Package org.apache.hc.core5.http.nio
Interface AsyncFilterChain
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceAsyncFilterChain.ResponseTriggerResponse trigger that can be used to generate the final HTTP response and terminate HTTP request processing.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AsyncDataConsumerproceed(HttpRequest request, EntityDetails entityDetails, HttpContext context, AsyncFilterChain.ResponseTrigger responseTrigger)Proceeds to the next element in the request processing chain.
-
-
-
Method Detail
-
proceed
AsyncDataConsumer proceed(HttpRequest request, EntityDetails entityDetails, HttpContext context, AsyncFilterChain.ResponseTrigger responseTrigger) throws HttpException, java.io.IOException
Proceeds to the next element in the request processing chain.- Parameters:
request- the actual request.entityDetails- the request entity details ornullif the request does not enclose an entity.responseTrigger- the response trigger.context- the actual execution context.- Throws:
HttpExceptionjava.io.IOException
-
-