public class LongDeserializer extends java.lang.Object implements Deserializer<java.lang.Long>
Constructor and Description |
---|
LongDeserializer() |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
configure(java.util.Map<java.lang.String,?> configs,
boolean isKey)
Configure this class.
|
java.lang.Long |
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, wait
deserialize
public void configure(java.util.Map<java.lang.String,?> configs, boolean isKey)
Deserializer
configure
in interface Deserializer<java.lang.Long>
configs
- configs in key/value pairsisKey
- whether is for key or valuepublic java.lang.Long deserialize(java.lang.String topic, byte[] data)
Deserializer
deserialize
in interface Deserializer<java.lang.Long>
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.Closeable
close
in interface java.lang.AutoCloseable
close
in interface Deserializer<java.lang.Long>