Class UUIDSerializer
java.lang.Object
org.apache.kafka.common.serialization.UUIDSerializer
- All Implemented Interfaces:
 Closeable,AutoCloseable,Serializer<UUID>
We are converting UUID to String before serializing. String encoding defaults to UTF8 and can be customized by setting
  the property key.deserializer.encoding, value.deserializer.encoding or deserializer.encoding. The first two take precedence over the last.
- 
Constructor Details
- 
UUIDSerializer
public UUIDSerializer() 
 - 
 - 
Method Details
- 
configure
Description copied from interface:SerializerConfigure this class.- Specified by:
 configurein interfaceSerializer<UUID>- Parameters:
 configs- configs in key/value pairsisKey- whether the serializer is used for the key or the value
 - 
serialize
Description copied from interface:SerializerConvertdatainto a byte array.It is recommended to serialize
nulldata to thenullbyte array.- Specified by:
 serializein interfaceSerializer<UUID>- Parameters:
 topic- topic associated with datadata- typed data; may benull- Returns:
 - serialized bytes; may be 
null 
 
 -