Interface GatewayFilterChain
-
public interface GatewayFilterChainContract to allow aGatewayFilterto delegate to the next in the chain. Copied from framework WebFilterChain- Since:
- 5.0
- Author:
- Rossen Stoyanchev
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<Void>filter(org.springframework.web.server.ServerWebExchange exchange)Delegate to the nextGatewayFilterin the chain.
-
-
-
Method Detail
-
filter
reactor.core.publisher.Mono<Void> filter(org.springframework.web.server.ServerWebExchange exchange)
Delegate to the nextGatewayFilterin the chain.- Parameters:
exchange- the current server exchange- Returns:
Mono<Void>to indicate when request handling is complete
-
-