Classes
Methods
(static) CompositeFuture.all(futures) → {CompositeFuture}
Like CompositeFuture#all but with a list of futures.
When the list is empty, the returned future will be already completed.
Parameters:
| Name | Type | Description |
|---|---|---|
futures |
Array.<Future> |
- Source:
Returns:
- Type
- CompositeFuture
(static) CompositeFuture.any(futures) → {CompositeFuture}
Like CompositeFuture#any but with a list of futures.
When the list is empty, the returned future will be already completed.
Parameters:
| Name | Type | Description |
|---|---|---|
futures |
Array.<Future> |
- Source:
Returns:
- Type
- CompositeFuture
(static) CompositeFuture.join(futures) → {CompositeFuture}
Like CompositeFuture#join but with a list of futures.
When the list is empty, the returned future will be already completed.
Parameters:
| Name | Type | Description |
|---|---|---|
futures |
Array.<Future> |
- Source:
Returns:
- Type
- CompositeFuture