public interface HttpMessageReader<T>
| Modifier and Type | Method and Description |
|---|---|
boolean |
canRead(org.springframework.core.ResolvableType elementType,
MediaType mediaType)
Indicates whether the given class can be read by this converter.
|
List<MediaType> |
getReadableMediaTypes()
Return the list of
MediaType objects that can be read by this converter. |
reactor.core.publisher.Flux<T> |
read(org.springframework.core.ResolvableType elementType,
ReactiveHttpInputMessage inputMessage,
Map<String,Object> hints)
Read a
Flux of the given type form the given input message, and returns it. |
reactor.core.publisher.Mono<T> |
readMono(org.springframework.core.ResolvableType elementType,
ReactiveHttpInputMessage inputMessage,
Map<String,Object> hints)
Read a
Mono of the given type form the given input message, and returns it. |
boolean canRead(org.springframework.core.ResolvableType elementType,
MediaType mediaType)
elementType - the stream element type to test for readabilitymediaType - the media type to read, can be null if not specified.
Typically the value of a Content-Type header.true if readable; false otherwisereactor.core.publisher.Flux<T> read(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage inputMessage, Map<String,Object> hints)
Flux of the given type form the given input message, and returns it.elementType - the stream element type to return. This type must have previously been
passed to the canRead method of this interface, which must have
returned true.inputMessage - the HTTP input message to read fromhints - additional information about how to read the bodyFlux of elementsreactor.core.publisher.Mono<T> readMono(org.springframework.core.ResolvableType elementType, ReactiveHttpInputMessage inputMessage, Map<String,Object> hints)
Mono of the given type form the given input message, and returns it.elementType - the stream element type to return. This type must have previously been
passed to the canRead method of this interface, which must have
returned true.inputMessage - the HTTP input message to read fromhints - additional information about how to read the bodyMono of object