You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Timo Walther (JIRA)" <ji...@apache.org> on 2016/03/30 12:40:25 UTC

[jira] [Assigned] (FLINK-3138) Method References are not supported as lambda expressions

     [ https://issues.apache.org/jira/browse/FLINK-3138?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Timo Walther reassigned FLINK-3138:
-----------------------------------

    Assignee: Timo Walther

> Method References are not supported as lambda expressions
> ---------------------------------------------------------
>
>                 Key: FLINK-3138
>                 URL: https://issues.apache.org/jira/browse/FLINK-3138
>             Project: Flink
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 0.10.2
>            Reporter: Stephan Ewen
>            Assignee: Timo Walther
>             Fix For: 1.0.0
>
>
> For many functions (here for example KeySelectors), one can use lambda expressions:
> {code}
> DataStream<MyType> stream = ...;
> stream.keyBy( v -> v.getId() )
> {code}
> Java's other syntax for this, Method References, do not work:
> {code}
> DataStream<MyType> stream = ...;
> stream.keyBy( MyType::getId )
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)