Description
For many functions (here for example KeySelectors), one can use lambda expressions:
DataStream<MyType> stream = ...; stream.keyBy( v -> v.getId() )
Java's other syntax for this, Method References, do not work:
DataStream<MyType> stream = ...; stream.keyBy( MyType::getId )
Attachments
Issue Links
- links to