Package io.debezium.engine.format
Interface KeyValueChangeEventFormat<K extends SerializationFormat<?>,V extends SerializationFormat<?>>
- All Known Subinterfaces:
KeyValueHeaderChangeEventFormat<K,V, H>
public interface KeyValueChangeEventFormat<K extends SerializationFormat<?>,V extends SerializationFormat<?>>
Describes a change event output format comprising a key and a value.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <K extends SerializationFormat<?>,V extends SerializationFormat<?>>
KeyValueChangeEventFormat<K,V> Creates a change event format representing key and value using separate objects.
-
Method Details
-
of
static <K extends SerializationFormat<?>,V extends SerializationFormat<?>> KeyValueChangeEventFormat<K,V> of(Class<K> keyFormat, Class<V> valueFormat) Creates a change event format representing key and value using separate objects. -
getValueFormat
-
getKeyFormat
-