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-8675] Add non-blocking shut down method to RestServerEndpoint #5511

Closed

Commits on Feb 18, 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.
    
    This closes apache#5503.
    tillrohrmann committed Feb 18, 2018
    Configuration menu
    Copy the full SHA
    c7c4198 View commit details
    Browse the repository at this point in the history
  2. [FLINK-8675] Add non-blocking shut down method to RestServerEndpoint

    Make shut down method of RestServerEndpoint non blocking.
    
    This closes apache#5511.
    tillrohrmann committed Feb 18, 2018
    Configuration menu
    Copy the full SHA
    c1aabd5 View commit details
    Browse the repository at this point in the history