接口 ExchangeFilterFunction

  • 函数接口:
    这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

    @FunctionalInterface
    public interface ExchangeFilterFunction
    Represents a function that filters an exchange function.

    The filter is executed when a Subscriber subscribes to the Publisher returned by the WebClient.

    从以下版本开始:
    5.0
    作者:
    Arjen Poutsma
    • 方法详细资料

      • filter

        reactor.core.publisher.Mono<ClientResponsefilter​(ClientRequest request,
                                                           ExchangeFunction next)
        Apply this filter to the given request and exchange function.

        The given ExchangeFunction represents the next entity in the chain, to be invoked via invoked in order to proceed with the exchange, or not invoked to shortcut the chain.

        参数:
        request - the current request
        next - the next exchange function in the chain
        返回:
        the filtered response
      • andThen

        default ExchangeFilterFunction andThen​(ExchangeFilterFunction afterFilter)
        Return a composed filter function that first applies this filter, and then applies the given "after" filter.
        参数:
        afterFilter - the filter to apply after this filter
        返回:
        the composed filter