Interface GatewayFilterChain


  • public interface GatewayFilterChain
    Contract to allow a GatewayFilter to 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 next GatewayFilter in the chain.
    • Method Detail

      • filter

        reactor.core.publisher.Mono<Void> filter​(org.springframework.web.server.ServerWebExchange exchange)
        Delegate to the next GatewayFilter in the chain.
        Parameters:
        exchange - the current server exchange
        Returns:
        Mono<Void> to indicate when request handling is complete