If it's about generics, see
https://stackoverflow.com/questions/5297978/calling-static-generic-methods
On 12/28/19 8:50 AM, Guozhang Wang wrote:
> Hello Aurel,
>
> Maybe this helps:
> https://kafka.apache.org/24/documentation/streams/developer-guide/dsl-api.html
>
> Guozhang
>
> On Fri, Dec 27
Hello Aurel,
Maybe this helps:
https://kafka.apache.org/24/documentation/streams/developer-guide/dsl-api.html
Guozhang
On Fri, Dec 27, 2019 at 8:50 AM Aurel Sandu wrote:
> Hi all of you,
>
> I am reading the following code :
> ..
> KTable wordCounts = textLines
> .f
Hi all of you,
I am reading the following code :
..
KTable wordCounts = textLines
.flatMapValues(textLine ->
Arrays.asList(textLine.toLowerCase().split("\\W+")))
.groupBy((key, word) -> word)
.count(Materialized.>as("counts-store"));
..