Class Jackson2CborEncoder
- java.lang.Object
- org.springframework.http.codec.json.Jackson2CodecSupport
- org.springframework.http.codec.json.AbstractJackson2Encoder
- org.springframework.http.codec.cbor.Jackson2CborEncoder
- All Implemented Interfaces:
Encoder<Object>,HttpMessageEncoder<Object>
public class Jackson2CborEncoder extends AbstractJackson2Encoder
Encode from anObjectto bytes of CBOR objects using Jackson. Stream encoding is not supported yet.- Since:
- 5.2
- Author:
- Sebastien Deleuze
- See Also:
Jackson2CborDecoder, Add CBOR support to WebFlux
Field Summary
Fields inherited from class org.springframework.http.codec.json.Jackson2CodecSupport
JSON_VIEW_HINT, logger
Constructor Summary
Constructors Constructor Description Jackson2CborEncoder()Jackson2CborEncoder(ObjectMapper mapper, MimeType... mimeTypes)
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Flux<DataBuffer>encode(org.reactivestreams.Publisher<?> inputStream, DataBufferFactory bufferFactory, ResolvableType elementType, MimeType mimeType, Map<String,Object> hints)Encode a stream of Objects of typeTinto aDataBufferoutput stream.Methods inherited from class org.springframework.http.codec.json.AbstractJackson2Encoder
canEncode, customizeWriter, encodeValue, getAnnotation, getEncodableMimeTypes, getEncodeHints, getJsonEncoding, getStreamingMediaTypes, setStreamingMediaTypes
Methods inherited from class org.springframework.http.codec.json.Jackson2CodecSupport
getHints, getJavaType, getMimeTypes, getObjectMapper, getParameter, supportsMimeType
Constructor Detail
Jackson2CborEncoder
public Jackson2CborEncoder()
Jackson2CborEncoder
public Jackson2CborEncoder(ObjectMapper mapper, MimeType... mimeTypes)
Method Detail
encode
public reactor.core.publisher.Flux<DataBuffer> encode(org.reactivestreams.Publisher<?> inputStream, DataBufferFactory bufferFactory, ResolvableType elementType, MimeType mimeType, Map<String,Object> hints)
Description copied from interface:EncoderEncode a stream of Objects of typeTinto aDataBufferoutput stream.- Specified by:
encodein interfaceEncoder<Object>- Overrides:
encodein classAbstractJackson2Encoder- 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 ofMonoshould be used.bufferFactory- for creating output streamDataBuffer'selementType- the expected type of elements in the input stream; this type must have been previously passed to theEncoder.canEncode(org.springframework.core.ResolvableType, org.springframework.util.MimeType)method and it must have returnedtrue.mimeType- the MIME type for the output content (optional)hints- additional information about how to encode- Returns:
- the output stream