Uses of Interface
org.springframework.http.ReactiveHttpInputMessage
Packages that use ReactiveHttpInputMessage
Package
Description
Abstractions for reactive HTTP client support including
ClientHttpRequest and
ClientHttpResponse as well as a
ClientHttpConnector.Provides implementations of
Encoder
and Decoder for web use.Multipart support.
Abstractions for reactive HTTP server support including a
ServerHttpRequest and
ServerHttpResponse along with an
HttpHandler for processing.-
Uses of ReactiveHttpInputMessage in org.springframework.http.client.reactive
Subinterfaces of ReactiveHttpInputMessage in org.springframework.http.client.reactiveModifier and TypeInterfaceDescriptioninterfaceRepresents a client-side reactive HTTP response.Classes in org.springframework.http.client.reactive that implement ReactiveHttpInputMessageModifier and TypeClassDescriptionclassWraps anotherClientHttpResponseand delegates all methods to it. -
Uses of ReactiveHttpInputMessage in org.springframework.http.codec
Methods in org.springframework.http.codec with parameters of type ReactiveHttpInputMessageModifier and TypeMethodDescriptionDecoderHttpMessageReader.getReadHints(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message) Get additional hints for decoding based on the input HTTP message.ResourceHttpMessageReader.getReadHints(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message) reactor.core.publisher.Flux<T>DecoderHttpMessageReader.read(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) FormHttpMessageReader.read(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) reactor.core.publisher.Flux<T>HttpMessageReader.read(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) Read from the input message and decode to a stream of objects.reactor.core.publisher.Flux<Object>ServerSentEventHttpMessageReader.read(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) reactor.core.publisher.Mono<T>DecoderHttpMessageReader.readMono(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) FormHttpMessageReader.readMono(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) reactor.core.publisher.Mono<T>HttpMessageReader.readMono(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) Read from the input message and decode to a single object.reactor.core.publisher.Mono<Object>ServerSentEventHttpMessageReader.readMono(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) -
Uses of ReactiveHttpInputMessage in org.springframework.http.codec.multipart
Methods in org.springframework.http.codec.multipart with parameters of type ReactiveHttpInputMessageModifier and TypeMethodDescriptionreactor.core.publisher.Flux<Part>DefaultPartHttpMessageReader.read(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) MultipartHttpMessageReader.read(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) reactor.core.publisher.Flux<PartEvent>PartEventHttpMessageReader.read(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) reactor.core.publisher.Mono<Part>DefaultPartHttpMessageReader.readMono(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) MultipartHttpMessageReader.readMono(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage inputMessage, Map<String, Object> hints) reactor.core.publisher.Mono<PartEvent>PartEventHttpMessageReader.readMono(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) -
Uses of ReactiveHttpInputMessage in org.springframework.http.server.reactive
Subinterfaces of ReactiveHttpInputMessage in org.springframework.http.server.reactiveModifier and TypeInterfaceDescriptioninterfaceRepresents a reactive server-side HTTP request.Classes in org.springframework.http.server.reactive that implement ReactiveHttpInputMessageModifier and TypeClassDescriptionclassCommon base class forServerHttpRequestimplementations.classWraps anotherServerHttpRequestand delegates all methods to it.