public class BytesDeserializer extends java.lang.Object implements Deserializer<org.apache.kafka.common.utils.Bytes>
| Constructor and Description |
|---|
BytesDeserializer() |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
configure(java.util.Map<java.lang.String,?> configs,
boolean isKey)
Configure this class.
|
org.apache.kafka.common.utils.Bytes |
deserialize(java.lang.String topic,
byte[] data)
Deserialize a record value from a byte array into a value or object.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdeserializepublic void configure(java.util.Map<java.lang.String,?> configs,
boolean isKey)
Deserializerconfigure in interface Deserializer<org.apache.kafka.common.utils.Bytes>configs - configs in key/value pairsisKey - whether is for key or valuepublic org.apache.kafka.common.utils.Bytes deserialize(java.lang.String topic,
byte[] data)
Deserializerdeserialize in interface Deserializer<org.apache.kafka.common.utils.Bytes>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 java.io.Closeableclose in interface java.lang.AutoCloseableclose in interface Deserializer<org.apache.kafka.common.utils.Bytes>