Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

public abstract class Transformer<T1, T2> {
    public abstract T2 transform(T1 t1);
    public void initialize(Map<String, String> props) {}
}
 

I was thinking if we should restrict the signature of the transform(). We could pass a standard List<*Record> but that would restrict what the user would be interested in doing.

...

property in the Kafka Connect config files to initialise the transformers, in the order specified in the above property. 

 

To accommodate the transformers, we can split the “functional” methods into separate parts from a user logical POV:
 

SourceTask’s poll() method can broken into:

...