Package org.apache.hc.core5.http.io
Interface HttpFilterChain
HttpFilterChain represents a single element in the server side request processing chain.
- Since:
- 5.0
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Response trigger that can be used to generate the final HTTP response and terminate HTTP request processing. -
Method Summary
Modifier and TypeMethodDescriptionvoid
proceed
(ClassicHttpRequest request, HttpFilterChain.ResponseTrigger responseTrigger, HttpContext context) Proceeds to the next element in the request processing chain.
-
Method Details
-
proceed
void proceed(ClassicHttpRequest request, HttpFilterChain.ResponseTrigger responseTrigger, HttpContext context) throws HttpException, IOException Proceeds to the next element in the request processing chain.- Parameters:
request
- the actual request.responseTrigger
- the response trigger.context
- the actual execution context.- Throws:
HttpException
IOException
-