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:Serializer
Configure this class.- Specified by:
configure
in interfaceSerializer<UUID>
- Parameters:
configs
- configs in key/value pairsisKey
- whether is for key or value
-
serialize
Description copied from interface:Serializer
Convertdata
into a byte array.- Specified by:
serialize
in interfaceSerializer<UUID>
- Parameters:
topic
- topic associated with datadata
- typed data- Returns:
- serialized bytes
-