Re: Please help me with link to documentation ... (generics I think)

2019-12-29 Thread Matthias J. Sax
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

Re: Please help me with link to documentation ... (generics I think)

2019-12-28 Thread Guozhang Wang
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

Please help me with link to documentation ... (generics I think)

2019-12-27 Thread Aurel Sandu
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")); ..