Uses of Interface
org.springframework.web.reactive.function.client.ExchangeFunction
Packages that use ExchangeFunction Package Description org.springframework.web.reactive.function.client Provides a reactiveWebClientthat builds on top of theorg.springframework.http.client.reactivereactive HTTP adapter layer.Uses of ExchangeFunction in org.springframework.web.reactive.function.client
Methods in org.springframework.web.reactive.function.client that return ExchangeFunction Modifier and Type Method Description default ExchangeFunctionExchangeFilterFunction. apply(ExchangeFunction exchange)Apply this filter to the given ExchangeFunction, resulting in a filtered exchange function.static ExchangeFunctionExchangeFunctions. create(ClientHttpConnector connector)Create anExchangeFunctionwith the givenClientHttpConnector.static ExchangeFunctionExchangeFunctions. create(ClientHttpConnector connector, ExchangeStrategies strategies)Create anExchangeFunctionwith the givenClientHttpConnectorandExchangeStrategies.default ExchangeFunctionExchangeFunction. filter(ExchangeFilterFunction filter)Filters this exchange function with the givenExchangeFilterFunction, resulting in a filteredExchangeFunction.Methods in org.springframework.web.reactive.function.client with parameters of type ExchangeFunction Modifier and Type Method Description default ExchangeFunctionExchangeFilterFunction. apply(ExchangeFunction exchange)Apply this filter to the given ExchangeFunction, resulting in a filtered exchange function.WebClient.BuilderWebClient.Builder. exchangeFunction(ExchangeFunction exchangeFunction)reactor.core.publisher.Mono<ClientResponse>ExchangeFilterFunction. filter(ClientRequest request, ExchangeFunction next)Apply this filter to the given request and exchange function.