Class ByteArrayDeserializer
java.lang.Object
org.apache.kafka.common.serialization.ByteArrayDeserializer
- All Implemented Interfaces:
Closeable,AutoCloseable,Deserializer<byte[]>
Constructor Summary
ConstructorsMethod Summary
Modifier and TypeMethodDescriptionbyte[]deserialize(String topic, byte[] data) Deserialize a record value from a byte array into a value or object.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.kafka.common.serialization.Deserializer
close, configure, deserialize, deserialize
Constructor Details
ByteArrayDeserializer
public ByteArrayDeserializer()
Method Details
deserialize
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