Uses of Interface
org.springframework.http.client.reactive.ClientHttpResponse
Packages that use ClientHttpResponse Package Description org.springframework.http.client.reactive Abstractions for reactive HTTP client support includingClientHttpRequestandClientHttpResponseas well as aClientHttpConnector.org.springframework.mock.http.client.reactive Mock implementations of reactive HTTP client contracts.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.org.springframework.web.reactive.function.client.support Classes supporting theorg.springframework.web.reactive.function.clientpackage.Uses of ClientHttpResponse in org.springframework.http.client.reactive
Classes in org.springframework.http.client.reactive that implement ClientHttpResponse Modifier and Type Class Description classClientHttpResponseDecoratorWraps anotherClientHttpResponseand delegates all methods to it.Methods in org.springframework.http.client.reactive that return ClientHttpResponse Modifier and Type Method Description ClientHttpResponseClientHttpResponseDecorator. getDelegate()Methods in org.springframework.http.client.reactive that return types with arguments of type ClientHttpResponse Modifier and Type Method Description reactor.core.publisher.Mono<ClientHttpResponse>ClientHttpConnector. connect(HttpMethod method, URI uri, Function<? super ClientHttpRequest,reactor.core.publisher.Mono<Void>> requestCallback)Connect to the origin server using the givenHttpMethodandURIand apply the givenrequestCallbackwhen the HTTP request of the underlying API can be initialized and written to.reactor.core.publisher.Mono<ClientHttpResponse>JettyClientHttpConnector. connect(HttpMethod method, URI uri, Function<? super ClientHttpRequest,reactor.core.publisher.Mono<Void>> requestCallback)reactor.core.publisher.Mono<ClientHttpResponse>ReactorClientHttpConnector. connect(HttpMethod method, URI uri, Function<? super ClientHttpRequest,reactor.core.publisher.Mono<Void>> requestCallback)Constructors in org.springframework.http.client.reactive with parameters of type ClientHttpResponse Constructor Description ClientHttpResponseDecorator(ClientHttpResponse delegate)Uses of ClientHttpResponse in org.springframework.mock.http.client.reactive
Classes in org.springframework.mock.http.client.reactive that implement ClientHttpResponse Modifier and Type Class Description classMockClientHttpResponseMock implementation ofClientHttpResponse.Uses of ClientHttpResponse in org.springframework.test.web.reactive.server
Methods in org.springframework.test.web.reactive.server that return ClientHttpResponse Modifier and Type Method Description ClientHttpResponseHttpHandlerConnector.FailureAfterResponseCompletedException. getCompletedResponse()Methods in org.springframework.test.web.reactive.server that return types with arguments of type ClientHttpResponse Modifier and Type Method Description reactor.core.publisher.Mono<ClientHttpResponse>HttpHandlerConnector. connect(HttpMethod httpMethod, URI uri, Function<? super ClientHttpRequest,reactor.core.publisher.Mono<Void>> requestCallback)Uses of ClientHttpResponse in org.springframework.web.reactive.function.client
Method parameters in org.springframework.web.reactive.function.client with type arguments of type ClientHttpResponse Modifier and Type Method Description <T> TClientResponse. body(BodyExtractor<T,? super ClientHttpResponse> extractor)Extract the body with the givenBodyExtractor.Uses of ClientHttpResponse in org.springframework.web.reactive.function.client.support
Method parameters in org.springframework.web.reactive.function.client.support with type arguments of type ClientHttpResponse Modifier and Type Method Description <T> TClientResponseWrapper. body(BodyExtractor<T,? super ClientHttpResponse> extractor)