Package dev.restate.sdk.serde.jackson
Class JacksonSerdes
java.lang.Object
dev.restate.sdk.serde.jackson.JacksonSerdes
Deprecated, for removal: This API element is subject to removal in a future version.
This will be removed in the next release, please check the individual methods for
more details.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> Serde
<T> of
(com.fasterxml.jackson.core.type.TypeReference<T> typeReference) Deprecated, for removal: This API element is subject to removal in a future version.Pass aTypeRef
to the context method requiring serialization/deserialization, instead of providing a serde using JacksonSerdes.static <T> Serde
<T> of
(com.fasterxml.jackson.databind.ObjectMapper mapper, com.fasterxml.jackson.core.type.TypeReference<T> typeReference) Deprecated, for removal: This API element is subject to removal in a future version.Pass aTypeRef
to the context method requiring serialization/deserialization, instead of providing a serde using JacksonSerdes.static <T> Serde
<T> Deprecated, for removal: This API element is subject to removal in a future version.Pass aClass
to the context method requiring serialization/deserialization, instead of providing a serde using JacksonSerdes.static <T> Serde
<T> Deprecated, for removal: This API element is subject to removal in a future version.Pass aClass
to the context method requiring serialization/deserialization, instead of providing a serde using JacksonSerdes.
-
Method Details
-
of
Deprecated, for removal: This API element is subject to removal in a future version.Pass aClass
to the context method requiring serialization/deserialization, instead of providing a serde using JacksonSerdes. This method will be removed in the next release. -
of
@Deprecated(forRemoval=true, since="2.0") public static <T> Serde<T> of(com.fasterxml.jackson.databind.ObjectMapper mapper, Class<T> clazz) Deprecated, for removal: This API element is subject to removal in a future version.Pass aClass
to the context method requiring serialization/deserialization, instead of providing a serde using JacksonSerdes. If you need to customize the object mapper, look atJacksonSerdeFactory
This method will be removed in the next release. -
of
@Deprecated(forRemoval=true, since="2.0") public static <T> Serde<T> of(com.fasterxml.jackson.core.type.TypeReference<T> typeReference) Deprecated, for removal: This API element is subject to removal in a future version.Pass aTypeRef
to the context method requiring serialization/deserialization, instead of providing a serde using JacksonSerdes. This method will be removed in the next release. -
of
@Deprecated(forRemoval=true, since="2.0") public static <T> Serde<T> of(com.fasterxml.jackson.databind.ObjectMapper mapper, com.fasterxml.jackson.core.type.TypeReference<T> typeReference) Deprecated, for removal: This API element is subject to removal in a future version.Pass aTypeRef
to the context method requiring serialization/deserialization, instead of providing a serde using JacksonSerdes. If you need to customize the object mapper, look atJacksonSerdeFactory
This method will be removed in the next release.
-