public class ByteBufferDeserializer extends Object implements Deserializer<ByteBuffer>
| Constructor and Description | 
|---|
| ByteBufferDeserializer() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | close() | 
| void | configure(Map<String,?> configs,
         boolean isKey)Configure this class. | 
| ByteBuffer | deserialize(String topic,
           byte[] data)Deserialize a record value from a bytearray into a value or object. | 
public void configure(Map<String,?> configs, boolean isKey)
Deserializerconfigure in interface Deserializer<ByteBuffer>configs - configs in key/value pairsisKey - whether is for key or valuepublic ByteBuffer deserialize(String topic, byte[] data)
Deserializerdeserialize in interface Deserializer<ByteBuffer>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.public void close()
close in interface Closeableclose in interface AutoCloseableclose in interface Deserializer<ByteBuffer>