[GitHub] flink pull request #2600: [FLINK-4751] [futures] Add thenCombineAsync functi...

2016-10-06 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/flink/pull/2600 --- 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

[GitHub] flink pull request #2600: [FLINK-4751] [futures] Add thenCombineAsync functi...

2016-10-06 Thread uce
Github user uce commented on a diff in the pull request: https://github.com/apache/flink/pull/2600#discussion_r82148748 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/concurrent/impl/FlinkFuture.java --- @@ -232,6 +244,40 @@ public R recover(Throwable failure)

[GitHub] flink pull request #2600: [FLINK-4751] [futures] Add thenCombineAsync functi...

2016-10-06 Thread uce
Github user uce commented on a diff in the pull request: https://github.com/apache/flink/pull/2600#discussion_r82142194 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/concurrent/impl/FlinkFuture.java --- @@ -232,6 +242,40 @@ public R recover(Throwable failure)

[GitHub] flink pull request #2600: [FLINK-4751] [futures] Add thenCombineAsync functi...

2016-10-06 Thread uce
Github user uce commented on a diff in the pull request: https://github.com/apache/flink/pull/2600#discussion_r82141826 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/concurrent/impl/FlinkFuture.java --- @@ -190,7 +191,16 @@ public R recover(Throwable failure)

[GitHub] flink pull request #2600: [FLINK-4751] [futures] Add thenCombineAsync functi...

2016-10-06 Thread uce
Github user uce commented on a diff in the pull request: https://github.com/apache/flink/pull/2600#discussion_r82142626 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/concurrent/impl/FlinkFuture.java --- @@ -232,6 +244,40 @@ public R recover(Throwable failure)

[GitHub] flink pull request #2600: [FLINK-4751] [futures] Add thenCombineAsync functi...

2016-10-05 Thread tillrohrmann
GitHub user tillrohrmann opened a pull request: https://github.com/apache/flink/pull/2600 [FLINK-4751] [futures] Add thenCombineAsync function to Flink's futures The `thenCombineAsync` method allows to combine two futures and apply a `BiFunction` on the results of both futures.