- Enclosing interface:
HttpFilter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Filter chain that contains all subsequent filters that are configured, as well as the final
route.
-
Method Summary
Modifier and TypeMethodDescriptionvoidproceed()Calls the next filter in the chain, or else the user's exchange handler, if this is the final filter in the chain.
-
Method Details
-
proceed
Calls the next filter in the chain, or else the user's exchange handler, if this is the final filter in the chain. TheHttpFiltermay decide to terminate the chain, by not calling this method. In this case, the filter must send the response to the request, because the application's exchange handler will not be invoked.- Throws:
IOException- if an I/O error occursException
-