Uses of Class
org.springframework.web.service.invoker.HttpRequestValues
Packages that use HttpRequestValues
Package
Description
Classes supporting the
org.springframework.web.reactive.function.client package.Support for creating a client proxy for an HTTP service annotated with
HttpExchange methods.-
Uses of HttpRequestValues in org.springframework.web.reactive.function.client.support
Methods in org.springframework.web.reactive.function.client.support with parameters of type HttpRequestValuesModifier and TypeMethodDescriptionreactor.core.publisher.Mono<ResponseEntity<Void>>WebClientAdapter.requestToBodilessEntity(HttpRequestValues requestValues) <T> reactor.core.publisher.Mono<T>WebClientAdapter.requestToBody(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Flux<T>WebClientAdapter.requestToBodyFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<ResponseEntity<T>>WebClientAdapter.requestToEntity(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<ResponseEntity<reactor.core.publisher.Flux<T>>>WebClientAdapter.requestToEntityFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) reactor.core.publisher.Mono<HttpHeaders>WebClientAdapter.requestToHeaders(HttpRequestValues requestValues) reactor.core.publisher.Mono<Void>WebClientAdapter.requestToVoid(HttpRequestValues requestValues) -
Uses of HttpRequestValues in org.springframework.web.service.invoker
Methods in org.springframework.web.service.invoker that return HttpRequestValuesModifier and TypeMethodDescriptionHttpRequestValues.Builder.build()Build theHttpRequestValuesinstance.Methods in org.springframework.web.service.invoker with parameters of type HttpRequestValuesModifier and TypeMethodDescriptionreactor.core.publisher.Mono<ResponseEntity<Void>>HttpClientAdapter.requestToBodilessEntity(HttpRequestValues requestValues) Variant ofHttpClientAdapter.requestToVoid(HttpRequestValues)with additional access to the response status and headers.<T> reactor.core.publisher.Mono<T>HttpClientAdapter.requestToBody(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Perform the given request and decode the response content to the given type.<T> reactor.core.publisher.Flux<T>HttpClientAdapter.requestToBodyFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Perform the given request and decode the response content to a stream with elements of the given type.<T> reactor.core.publisher.Mono<ResponseEntity<T>>HttpClientAdapter.requestToEntity(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Variant ofHttpClientAdapter.requestToBody(HttpRequestValues, ParameterizedTypeReference)with additional access to the response status and headers.<T> reactor.core.publisher.Mono<ResponseEntity<reactor.core.publisher.Flux<T>>>HttpClientAdapter.requestToEntityFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Variant ofHttpClientAdapter.requestToBodyFlux(HttpRequestValues, ParameterizedTypeReference)with additional access to the response status and headers.reactor.core.publisher.Mono<HttpHeaders>HttpClientAdapter.requestToHeaders(HttpRequestValues requestValues) Perform the given request, release the response content, and return the response headers.reactor.core.publisher.Mono<Void>HttpClientAdapter.requestToVoid(HttpRequestValues requestValues) Perform the given request, and release the response content, if any.