Class BytesDeserializer
java.lang.Object
org.apache.kafka.common.serialization.BytesDeserializer
- All Implemented Interfaces:
 Closeable,AutoCloseable,Deserializer<org.apache.kafka.common.utils.Bytes>
public class BytesDeserializer
extends Object
implements Deserializer<org.apache.kafka.common.utils.Bytes>
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionorg.apache.kafka.common.utils.Bytesdeserialize(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
- 
BytesDeserializer
public BytesDeserializer() 
 - 
 - 
Method Details
- 
deserialize
Description copied from interface:DeserializerDeserialize a record value from a byte array into a value or object.It is recommended to deserialize a
nullbyte array to anullobject.- Specified by:
 deserializein interfaceDeserializer<org.apache.kafka.common.utils.Bytes>- Parameters:
 topic- topic associated with the datadata- serialized bytes; may benull- Returns:
 - deserialized typed data; may be 
null 
 
 -