| AvroBaseRecordTransformer<T extends AvroBaseRecordTransformer.BaseSerializedEvent<P>,P> |
|
| AvroBaseRecordTransformer.BaseSerializedEvent<P> |
POJO of a serialized event
|
| AvroByteRecordTransformer |
|
| AvroByteRecordTransformer.ByteRecordSerializedEvent |
Serialized event with payload in byte array
|
| AvroDataUtils |
Utils for handling Avro data for project internal use.
|
| AvroGenericRecordTransformer |
|
| AvroGenericRecordTransformer.GenericRecordSerializedEvent |
Serialized event with payload in GenericRecord
|
| AvroSerializer |
Serializes Cassandra CDC POJO classes to Avro bytes for publishing to Kafka,
and deserializes the bytes to Avro records.
|
| AvroSerializer.Deserializer |
|
| CdcEventAvroEncoder |
Base abstraction to convert CdcEvent objects into another data format, e.g.
|
| CdcEventUtils |
|
| CdcEventUtils.UpdatedEvent |
|
| RecordReader |
Reads values from GenericRecord
The value is converted, if there is a TypeConversion registered.
|
| TypeConversion.DateConversion |
Converts date value in Integer to LocalDate.
|
| TypeConversion.DecimalConversion |
Converts GenericFixed to BigDecimal.
|
| TypeConversion.InetAddressConversion |
|
| TypeConversion.ListConversion |
Converts GenericData.Array (, which is a List,) into List
The conversion is identity.
|
| TypeConversion.MapConversion |
Converts GenericData.Array (, which is a List,) of GenericRecord into Map
The contained GenericRecord should be an avro key-value record.
|
| TypeConversion.SetConversion |
Converts GenericData.Array (, which is a List,) into Set
The conversion is done recursively, meaning the elements of the input are converted too.
|
| TypeConversion.TimestampConversion |
Converts Long to Date.
|
| TypeConversion.TypeMapping |
A simple data class that represents the type mapping between the source type and target type.
|
| TypeConversion.UdtConversion |
Converts a UDT GenericRecord into Map
The GenericRecord should be an avro key-value record.
|
| TypeConversion.UUIDConversion |
Converts either String or Utf8 to UUID.
|
| TypeConversion.VarIntConversion |
Converts GenericFixed to BigInteger.
|
| TypeConversionRegistry |