Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-8669] Add completeAll and runAfterwards(Async) to FutureUtils #5503

Closed
wants to merge 1 commit into from

Commits on Feb 17, 2018

  1. [FLINK-8669] Add completeAll and runAfterwards(Async) to FutureUtils

    FutureUtils#completeAll(Collection) takes a collection of futures and returns
    a future which is completed after all of the given futures are completed. This
    also includes exceptional completions. Potentially occurring exceptions are
    recorded and combined into a single exception with which the resulting future
    is completed.
    
    FutureUtils#runAfterwards takes a future and runs a given action after the
    completion of the given future. This also includes an exceptional completion.
    In this case, a potentially occurring exception as the result of the provided
    action will be combined with the future's exception.
    tillrohrmann committed Feb 17, 2018
    Configuration menu
    Copy the full SHA
    d5d80de View commit details
    Browse the repository at this point in the history