invoke First Of
Invokes the first DeferredAction whose deferred value completes, executing its callback and returning the result. Other deferred actions are cancelled if cancelOnResult is true.
Return
The result of invoking the first completed deferred action
Parameters
The CoroutineScope in which to await the deferred values
If true, cancels all other deferred actions after the first completes. Defaults to true
Type Parameters
The type of the result after applying callbacks
Invokes the first DeferredAction from the given variants whose deferred value completes, executing its callback and returning the result. Other deferred actions are cancelled if cancelOnResult is true.
Return
The result of invoking the first completed deferred action
Parameters
The CoroutineScope in which to await the deferred values
The deferred actions to race
If true, cancels all other deferred actions after the first completes. Defaults to true
Type Parameters
The type of the result after applying callbacks