Versions Compared

Key

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

...

Code Block
public class To {
    protected String childName;
    protected String childName;
    protected long timestamp;
    protected long timestamp;
    protected Headers headers;
    
    //...
    public To withHeaders(Headers headers) {
        this.headers = headers;
        return this;
    }
    //...
}


Draft implementation: https://github.com/apache/kafka/pull/10265

Compatibility, Deprecation, and Migration Plan

...