public class VoidDeserializer extends Object implements Deserializer<Void>
| Constructor and Description | 
|---|
| VoidDeserializer() | 
| Modifier and Type | Method and Description | 
|---|---|
| Void | deserialize(String topic,
           byte[] data)Deserialize a record value from a byte array into a value or object. | 
| Void | deserialize(String topic,
           Headers headers,
           ByteBuffer data)Deserialize a record value from a ByteBuffer into a value or object. | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclose, configure, deserializepublic Void deserialize(String topic, byte[] data)
Deserializerdeserialize in interface Deserializer<Void>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 deserialize(String topic, Headers headers, ByteBuffer data)
Deserializerdeserialize in interface Deserializer<Void>topic - topic associated with the dataheaders - headers associated with the record; may be empty.data - serialized ByteBuffer; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.