Package io.debezium.spi.converter
Interface CustomConverter.ConverterRegistration<S>
-
- Enclosing interface:
- CustomConverter<S,F extends ConvertedField>
public static interface CustomConverter.ConverterRegistration<S>Callback for registering a converter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidregister(S fieldSchema, CustomConverter.Converter converter)Registers the given schema and converter for the current field.
-
-
-
Method Detail
-
register
void register(S fieldSchema, CustomConverter.Converter converter)
Registers the given schema and converter for the current field. Should not be invoked more than once for the same field.
-
-