Class ByteArrayDeserializer
- java.lang.Object
-
- org.apache.kafka.common.serialization.ByteArrayDeserializer
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,Deserializer<byte[]>
public class ByteArrayDeserializer extends java.lang.Object implements Deserializer<byte[]>
-
-
Constructor Summary
Constructors Constructor Description ByteArrayDeserializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]deserialize(java.lang.String topic, byte[] data)Deserialize a record value from a byte array into a value or object.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.kafka.common.serialization.Deserializer
close, configure, deserialize
-
-
-
-
Method Detail
-
deserialize
public byte[] deserialize(java.lang.String topic, byte[] data)Description copied from interface:DeserializerDeserialize a record value from a byte array into a value or object.- Specified by:
deserializein interfaceDeserializer<byte[]>- 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
-
-