Package | Description |
---|---|
org.springframework.web.reactive.function.client |
Provides a reactive
WebClient
that builds on top of the
org.springframework.http.client.reactive reactive HTTP adapter layer. |
Modifier and Type | Method and Description |
---|---|
default ExchangeFunction |
ExchangeFilterFunction.apply(ExchangeFunction exchange)
Apply this filter to the given ExchangeFunction, resulting
in a filtered exchange function.
|
static ExchangeFunction |
ExchangeFunctions.create(ClientHttpConnector connector)
Create an
ExchangeFunction with the given ClientHttpConnector . |
static ExchangeFunction |
ExchangeFunctions.create(ClientHttpConnector connector,
ExchangeStrategies strategies)
Create an
ExchangeFunction with the given
ClientHttpConnector and ExchangeStrategies . |
default ExchangeFunction |
ExchangeFunction.filter(ExchangeFilterFunction filter)
Filters this exchange function with the given
ExchangeFilterFunction , resulting in a
filtered ExchangeFunction . |
Modifier and Type | Method and Description |
---|---|
default ExchangeFunction |
ExchangeFilterFunction.apply(ExchangeFunction exchange)
Apply this filter to the given ExchangeFunction, resulting
in a filtered exchange function.
|
WebClient.Builder |
WebClient.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.
|