T
- Type to be serialized from.public interface Serializer<T>
extends java.io.Closeable
Implement ClusterResourceListener
to receive cluster metadata once it's available. Please see the class documentation for ClusterResourceListener for more information.
Modifier and Type | Method and Description |
---|---|
void |
close()
Close this serializer.
|
void |
configure(java.util.Map<java.lang.String,?> configs,
boolean isKey)
Configure this class.
|
default byte[] |
serialize(java.lang.String topic,
Headers headers,
T data)
Convert
data into a byte array. |
byte[] |
serialize(java.lang.String topic,
T data)
Convert
data into a byte array. |
void configure(java.util.Map<java.lang.String,?> configs, boolean isKey)
configs
- configs in key/value pairsisKey
- whether is for key or valuebyte[] serialize(java.lang.String topic, T data)
data
into a byte array.topic
- topic associated with datadata
- typed datadefault byte[] serialize(java.lang.String topic, Headers headers, T data)
data
into a byte array.topic
- topic associated with dataheaders
- headers associated with the recorddata
- typed datavoid close()
close
in interface java.lang.AutoCloseable
close
in interface java.io.Closeable