You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Chesnay Schepler (JIRA)" <ji...@apache.org> on 2018/07/24 13:11:00 UTC

[jira] [Reopened] (FLINK-5175) StreamExecutionEnvironment's set function return `this` instead of void

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

Chesnay Schepler reopened FLINK-5175:
-------------------------------------

> StreamExecutionEnvironment's set function return `this` instead of void
> -----------------------------------------------------------------------
>
>                 Key: FLINK-5175
>                 URL: https://issues.apache.org/jira/browse/FLINK-5175
>             Project: Flink
>          Issue Type: Sub-task
>          Components: DataStream API
>            Reporter: shijinkui
>            Priority: Major
>
> from FLINK-5167.
> for example :
> public void setNumberOfExecutionRetries(int numberOfExecutionRetries)
> { config.setNumberOfExecutionRetries(numberOfExecutionRetries); }
> change to:
> public StreamExecutionEnvironment setNumberOfExecutionRetries(int numberOfExecutionRetries)
> { config.setNumberOfExecutionRetries(numberOfExecutionRetries); return this; }



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)