Interface Deserializer<T>
-
- Type Parameters:
T- Type to be deserialized into.
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable
- All Known Subinterfaces:
ExtendedDeserializer<T>
- All Known Implementing Classes:
ByteArrayDeserializer,ByteBufferDeserializer,BytesDeserializer,DoubleDeserializer,ExtendedDeserializer.Wrapper,FloatDeserializer,IntegerDeserializer,LongDeserializer,ShortDeserializer,StringDeserializer,UUIDDeserializer,VoidDeserializer
public interface Deserializer<T> extends java.io.CloseableAn interface for converting bytes to objects. A class that implements this interface is expected to have a constructor with no parameters.Implement
ClusterResourceListenerto receive cluster metadata once it's available. Please see the class documentation for ClusterResourceListener for more information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidclose()Close this deserializer.default voidconfigure(java.util.Map<java.lang.String,?> configs, boolean isKey)Configure this class.Tdeserialize(java.lang.String topic, byte[] data)Deserialize a record value from a byte array into a value or object.default Tdeserialize(java.lang.String topic, Headers headers, byte[] data)Deserialize a record value from a byte array into a value or object.
-
-
-
Method Detail
-
configure
default void configure(java.util.Map<java.lang.String,?> configs, boolean isKey)Configure this class.- Parameters:
configs- configs in key/value pairsisKey- whether is for key or value
-
deserialize
T deserialize(java.lang.String topic, byte[] data)
Deserialize a record value from a byte array into a value or object.- Parameters:
topic- topic associated with the datadata- serialized bytes; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.- Returns:
- deserialized typed data; may be null
-
deserialize
default T deserialize(java.lang.String topic, Headers headers, byte[] data)
Deserialize a record value from a byte array into a value or object.- Parameters:
topic- topic associated with the dataheaders- headers associated with the record; may be empty.data- serialized bytes; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.- Returns:
- deserialized typed data; may be null
-
close
default void close()
Close this deserializer.This method must be idempotent as it may be called multiple times.
- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable
-
-