Package org.springframework.core.codec
Class AbstractSingleValueEncoder<T>
java.lang.Object
org.springframework.core.codec.AbstractEncoder<T>
org.springframework.core.codec.AbstractSingleValueEncoder<T>
- Type Parameters:
- T- the element type
- All Implemented Interfaces:
- Encoder<T>
- Direct Known Subclasses:
- Jaxb2XmlEncoder,- ResourceEncoder
Abstract base class for 
Encoder
 classes that can only deal with a single value.- Since:
- 5.0
- Author:
- Arjen Poutsma
- 
Field SummaryFields inherited from class org.springframework.core.codec.AbstractEncoderlogger
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal reactor.core.publisher.Flux<DataBuffer>encode(Publisher<? extends T> inputStream, DataBufferFactory bufferFactory, ResolvableType elementType, MimeType mimeType, Map<String, Object> hints) Encode a stream of Objects of typeTinto aDataBufferoutput stream.protected abstract reactor.core.publisher.Flux<DataBuffer>encode(T t, DataBufferFactory dataBufferFactory, ResolvableType type, MimeType mimeType, Map<String, Object> hints) EncodeTto an outputDataBufferstream.Methods inherited from class org.springframework.core.codec.AbstractEncodercanEncode, getEncodableMimeTypes, getLogger, setLoggerMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.core.codec.EncoderencodeValue, getEncodableMimeTypes
- 
Constructor Details- 
AbstractSingleValueEncoder
 
- 
- 
Method Details- 
encodepublic final reactor.core.publisher.Flux<DataBuffer> encode(Publisher<? extends T> inputStream, DataBufferFactory bufferFactory, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) Description copied from interface:EncoderEncode a stream of Objects of typeTinto aDataBufferoutput stream.- Parameters:
- inputStream- the input stream of Objects to encode. If the input should be encoded as a single value rather than as a stream of elements, an instance of- Monoshould be used.
- bufferFactory- for creating output stream- DataBuffer's
- elementType- the expected type of elements in the input stream; this type must have been previously passed to the- Encoder.canEncode(org.springframework.core.ResolvableType, org.springframework.util.MimeType)method and it must have returned- true.
- mimeType- the MIME type for the output content (optional)
- hints- additional information about how to encode
- Returns:
- the output stream
 
- 
encodeprotected abstract reactor.core.publisher.Flux<DataBuffer> encode(T t, DataBufferFactory dataBufferFactory, ResolvableType type, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) EncodeTto an outputDataBufferstream.- Parameters:
- t- the value to process
- dataBufferFactory- a buffer factory used to create the output
- type- the stream element type to process
- mimeType- the mime type to process
- hints- additional information about how to do decode, optional
- Returns:
- the output stream
 
 
-