Uses of Interface
org.springframework.http.client.reactive.ClientHttpConnector
Packages that use ClientHttpConnector Package Description org.springframework.http.client.reactive Abstractions for reactive HTTP client support includingClientHttpRequestandClientHttpResponseas well as aClientHttpConnector.org.springframework.test.web.reactive.server Support for testing Spring WebFlux server endpoints viaWebTestClient.org.springframework.web.reactive.function.client Provides a reactiveWebClientthat builds on top of theorg.springframework.http.client.reactivereactive HTTP adapter layer.Uses of ClientHttpConnector in org.springframework.http.client.reactive
Classes in org.springframework.http.client.reactive that implement ClientHttpConnector Modifier and Type Class Description classJettyClientHttpConnectorClientHttpConnectorfor the Jetty Reactive Streams HttpClient.classReactorClientHttpConnectorReactor-Netty implementation ofClientHttpConnector.Uses of ClientHttpConnector in org.springframework.test.web.reactive.server
Classes in org.springframework.test.web.reactive.server that implement ClientHttpConnector Modifier and Type Class Description classHttpHandlerConnectorConnector that handles requests by invoking anHttpHandlerrather than making actual requests to a network socket.Methods in org.springframework.test.web.reactive.server with parameters of type ClientHttpConnector Modifier and Type Method Description voidWebTestClientConfigurer. afterConfigurerAdded(WebTestClient.Builder builder, WebHttpHandlerBuilder httpHandlerBuilder, ClientHttpConnector connector)Invoked once only, immediately (i.e.static WebTestClient.BuilderWebTestClient. bindToServer(ClientHttpConnector connector)A variant ofWebTestClient.bindToServer()with a pre-configured connector.Uses of ClientHttpConnector in org.springframework.web.reactive.function.client
Methods in org.springframework.web.reactive.function.client with parameters of type ClientHttpConnector Modifier and Type Method Description WebClient.BuilderWebClient.Builder. clientConnector(ClientHttpConnector connector)Configure theClientHttpConnectorto use.static ExchangeFunctionExchangeFunctions. create(ClientHttpConnector connector)Create anExchangeFunctionwith the givenClientHttpConnector.static ExchangeFunctionExchangeFunctions. create(ClientHttpConnector connector, ExchangeStrategies strategies)Create anExchangeFunctionwith the givenClientHttpConnectorandExchangeStrategies.