Github user mxm commented on a diff in the pull request: https://github.com/apache/flink/pull/2732#discussion_r89135846 --- Diff: flink-streaming-scala/src/main/scala/org/apache/flink/streaming/api/scala/StreamExecutionEnvironment.scala --- @@ -634,6 +634,25 @@ class StreamExecutionEnvironment(javaEnv: JavaEnv) { def execute(jobName: String) = javaEnv.execute(jobName) /** + * Triggers the program execution. The environment will execute all parts of + * the program that have resulted in a "sink" operation. Sink operations are + * for example printing results or forwarding them to a message queue. + * + * The program execution will be logged and displayed with a generated + * default name. + */ + def executeWithControl() = javaEnv.executeWithControl() + + /** + * Triggers the program execution. The environment will execute all parts of + * the program that have resulted in a "sink" operation. Sink operations are + * for example printing results or forwarding them to a message queue. + * + * The program execution will be logged and displayed with the provided name. --- End diff -- Ay!
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---