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)
Deserializer
configure
in interface Deserializer<ByteBuffer>
configs
- configs in key/value pairsisKey
- whether is for key or valuepublic ByteBuffer deserialize(String topic, byte[] data)
Deserializer
deserialize
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 Closeable
close
in interface AutoCloseable
close
in interface Deserializer<ByteBuffer>