Package io.dapr.serializer
Class DefaultObjectSerializer
java.lang.Object
io.dapr.client.ObjectSerializer
io.dapr.serializer.DefaultObjectSerializer
- All Implemented Interfaces:
DaprObjectSerializer
public class DefaultObjectSerializer extends ObjectSerializer implements DaprObjectSerializer
Default serializer/deserializer for request/response objects and for state objects too.
-
Field Summary
-
Constructor Summary
Constructors Constructor Description DefaultObjectSerializer() -
Method Summary
Modifier and Type Method Description <T> Tdeserialize(byte[] data, TypeRef<T> type)Deserializes the byte array into the original object.StringgetContentType()Returns the content type of the request.byte[]serialize(Object o)Serializes a given state object into byte array.
-
Constructor Details
-
DefaultObjectSerializer
public DefaultObjectSerializer()
-
-
Method Details
-
serialize
Serializes a given state object into byte array.- Specified by:
serializein interfaceDaprObjectSerializer- Overrides:
serializein classObjectSerializer- Parameters:
o- State object to be serialized.- Returns:
- Array of bytes[] with the serialized content.
- Throws:
IOException- In case state cannot be serialized.
-
deserialize
Deserializes the byte array into the original object.- Specified by:
deserializein interfaceDaprObjectSerializer- Overrides:
deserializein classObjectSerializer- Type Parameters:
T- Generic type of the object being deserialized.- Parameters:
data- Content to be parsed.type- Type of the object being deserialized.- Returns:
- Object of type T.
- Throws:
IOException- In case content cannot be deserialized.
-
getContentType
Returns the content type of the request.- Specified by:
getContentTypein interfaceDaprObjectSerializer- Returns:
- content type of the request
-