Package org.springframework.web.server
Interface WebFilterChain
- All Known Implementing Classes:
DefaultWebFilterChain
public interface WebFilterChain
Contract to allow a
WebFilter to delegate to the next in the chain.- Since:
- 5.0
- Author:
- Rossen Stoyanchev
-
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>filter(ServerWebExchange exchange) Delegate to the nextWebFilterin the chain.
-
Method Details
-
filter
Delegate to the nextWebFilterin the chain.- Parameters:
exchange- the current server exchange- Returns:
Mono<Void>to indicate when request handling is complete
-