This repository was archived by the owner on May 25, 2023. It is now read-only.

Description
First of all, thanks a lot for this library. It makes my code look much cleaner.
I did notice that StreamsBuilderS.globalTable has no overload where I can pass a customer Consumed[K, V] parameter as in
(new StreamsBuilderS).globalTable("my_table", Consumed.`with`(new MyKeySerde, new MyValueSerde))
My current workaround is to use the inner StreamsBuilder like:
(new StreamsBuilderS).inner.globalTable("my_table", Consumed.`with`(new MyKeySerde, new MyValueSerde))
Is there any specific reason why StreamsBuilderS.globalTable doesn't have this overload?