File tree Expand file tree Collapse file tree
spring-web/src/main/java/org/springframework/http/codec/cbor Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434
3535/**
3636 * Decode bytes into CBOR and convert to Object's with Jackson 2.x.
37- * Stream decoding is not supported yet.
37+ *
38+ * <p><a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110">Stream decoding is currently not supported</a>.
3839 *
3940 * @author Sebastien Deleuze
4041 * @since 5.2
4142 * @see Jackson2CborEncoder
42- * @see <a href="https://github.com/spring-projects/spring-framework/issues/20513">Add CBOR support to WebFlux</a>
4343 * @deprecated since 7.0 in favor of {@link JacksonCborDecoder}
4444 */
4545@ Deprecated (since = "7.0" , forRemoval = true )
Original file line number Diff line number Diff line change 3535
3636/**
3737 * Encode from an {@code Object} to bytes of CBOR objects using Jackson 2.x.
38- * Stream encoding is not supported yet.
38+ *
39+ * <p><a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110">Stream encoding is currently not supported</a>.
3940 *
4041 * @author Sebastien Deleuze
4142 * @since 5.2
Original file line number Diff line number Diff line change 3333/**
3434 * Decode bytes into CBOR and convert to Objects with Jackson 3.x.
3535 *
36- * <p>Stream decoding is currently not supported.
36+ * <p><a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110"> Stream decoding is currently not supported</a> .
3737 *
3838 * @author Sebastien Deleuze
3939 * @since 7.0
4040 * @see JacksonCborEncoder
41- * @see <a href="https://github.com/spring-projects/spring-framework/issues/20513">Add CBOR support to WebFlux</a>
4241 */
4342public class JacksonCborDecoder extends AbstractJacksonDecoder <CBORMapper > {
4443
Original file line number Diff line number Diff line change 3434/**
3535 * Encode from an {@code Object} to bytes of CBOR objects using Jackson 3.x.
3636 *
37- * <p>Stream encoding is currently not supported.
37+ * <p><a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110"> Stream encoding is currently not supported</a> .
3838 *
3939 * @author Sebastien Deleuze
4040 * @since 7.0
4141 * @see JacksonCborDecoder
42- * @see <a href="https://github.com/spring-projects/spring-framework /issues/20513 ">Add CBOR support to WebFlux </a>
42+ * @see <a href="https://github.com/FasterXML/jackson-dataformats-binary /issues/110 ">Add support for non-blocking ("async") CBOR parsing </a>
4343 */
4444public class JacksonCborEncoder extends AbstractJacksonEncoder <CBORMapper > {
4545
You can’t perform that action at this time.
0 commit comments