public interface Converter
Modifier and Type | Method and Description |
---|---|
void |
configure(Map<String,?> configs,
boolean isKey)
Configure this class.
|
default byte[] |
fromConnectData(String topic,
Headers headers,
Schema schema,
Object value)
Convert a Kafka Connect data object to a native object for serialization,
potentially using the supplied topic and headers in the record as necessary.
|
byte[] |
fromConnectData(String topic,
Schema schema,
Object value)
Convert a Kafka Connect data object to a native object for serialization.
|
SchemaAndValue |
toConnectData(String topic,
byte[] value)
Convert a native object to a Kafka Connect data object.
|
default SchemaAndValue |
toConnectData(String topic,
Headers headers,
byte[] value)
Convert a native object to a Kafka Connect data object,
potentially using the supplied topic and headers in the record as necessary.
|
void configure(Map<String,?> configs, boolean isKey)
configs
- configs in key/value pairsisKey
- whether is for key or valuebyte[] fromConnectData(String topic, Schema schema, Object value)
topic
- the topic associated with the dataschema
- the schema for the valuevalue
- the value to convertdefault byte[] fromConnectData(String topic, Headers headers, Schema schema, Object value)
Connect uses this method directly, and for backward compatibility reasons this method
by default will call the fromConnectData(String, Schema, Object)
method.
Override this method to make use of the supplied headers.
topic
- the topic associated with the dataheaders
- the headers associated with the data; any changes done to the headers
are applied to the message sent to the brokerschema
- the schema for the valuevalue
- the value to convertSchemaAndValue toConnectData(String topic, byte[] value)
topic
- the topic associated with the datavalue
- the value to convertSchema
and the converted valuedefault SchemaAndValue toConnectData(String topic, Headers headers, byte[] value)
Connect uses this method directly, and for backward compatibility reasons this method
by default will call the toConnectData(String, byte[])
method.
Override this method to make use of the supplied headers.
topic
- the topic associated with the dataheaders
- the headers associated with the datavalue
- the value to convertSchema
and the converted value