Class ProcessingCallables.TransformAndConvertRecord<R>

java.lang.Object
io.debezium.embedded.async.ProcessingCallables.TransformAndConvertRecord<R>
All Implemented Interfaces:
Callable<R>
Enclosing class:
ProcessingCallables

public static class ProcessingCallables.TransformAndConvertRecord<R> extends Object implements Callable<R>
Callable which applies transformations to a single record and convert the record into desired format.
  • Field Details

    • record

      private final org.apache.kafka.connect.source.SourceRecord record
    • transformations

      private final Transformations transformations
    • converter

      private final Function<org.apache.kafka.connect.source.SourceRecord,R> converter
  • Constructor Details

    • TransformAndConvertRecord

      TransformAndConvertRecord(org.apache.kafka.connect.source.SourceRecord record, Transformations transformations, Function<org.apache.kafka.connect.source.SourceRecord,R> converter)
  • Method Details

    • call

      public R call()
      Specified by:
      call in interface Callable<R>