Whatever message this page gives is out now! Go check it out!
| Function or method | Summary |
|---|---|
| asyncAllOf | Wait for all futures in an array. |
| asyncAnyOf | Complete when any future in an array finishes first. |
| orTimeout | Fail if the stage exceeds a time limit. |
| completeOnTimeout | Supply a default value on timeout. |
| thenApplyAsync | Async map of the successful value. |
| thenAcceptAsync | Async side effect with the value. |
| thenRunAsync | Async parameterless follow-up. |
| thenComposeAsync | Async flat-map to another Future. |
| thenCombineAsync | Async merge of two successful results. |
| thenAcceptBothAsync | Async side effect with both values. |
| runAfterBothAsync | Async action after both complete. |
| applyToEitherAsync | Async map of the first completing value. |
| acceptEitherAsync | Async consume the first completing value. |
| runAfterEitherAsync | Async action after either completes. |
| whenCompleteAsync | Async observe completion (result and error). |
| handleAsync | Async fold result or error into a new value. |
| exceptionallyAsync | Async recover from failure with a value. |
| exceptionallyComposeAsync | Async recover from failure with a Future. |