Package io.micronaut.http.filter
Interface ClientFilterChain
- All Superinterfaces:
FilterChain
- Since:
- 1.0
- Author:
- Graeme Rocher
-
Method Summary
Modifier and TypeMethodDescriptiondefault Publisher<? extends HttpResponse<?>>
proceed
(HttpRequest<?> request) Proceed to the next interceptor or final request invocation.Publisher<? extends HttpResponse<?>>
proceed
(MutableHttpRequest<?> request)
-
Method Details
-
proceed
- Parameters:
request
- The Http request- Returns:
- A
Publisher
for the HttpResponse
-
proceed
Description copied from interface:FilterChain
Proceed to the next interceptor or final request invocation.- Specified by:
proceed
in interfaceFilterChain
- Parameters:
request
- The current request- Returns:
- A
Publisher
for the Http response
-