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, 2019 at 8:50 AM Aurel Sandu <asandu1...@gmail.com> wrote:
> 
>> Hi all of you,
>>
>> I am reading the following code :
>> ..........
>>         KTable<String, Long> wordCounts = textLines
>>             .flatMapValues(textLine ->
>> Arrays.asList(textLine.toLowerCase().split("\\W+")))
>>             .groupBy((key, word) -> word)
>>             .count(Materialized.<String, Long, KeyValueStore<Bytes,
>> byte[]>>as("counts-store"));
>> ..........
>>
>> I do not understand this line
>>
>> count(Materialized.<String, Long, KeyValueStore<Bytes,
>> byte[]>>as("counts-store"))
>>
>> Please tell me where to read to understand this
>>
>> Thank you,
>> Aurel
>>
>>
>>
> 

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to