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