Re: Extending KStream DSL in applications

2016-12-06 Thread Matthias J. Sax
Hi, personally, I do not see a good reason to change it. I guess, the simplest thing for you to do is, to patch the code in a private repo and build the library by yourself. That's the beauty of open source :) -Matthias On 12/3/16 8:44 PM, Mathieu Fenniak wrote: > Hello devs, > > I'd like to

Extending KStream DSL in applications

2016-12-03 Thread Mathieu Fenniak
Hello devs, I'd like to be able to create my own KTableProcessorSupplier implementation in a Kafka Streams application, but it's currently not possible without the use of reflection due to KTableImpl's valueGetterSupplier & enableSendingOldValues methods being package-local. Would there be any op