concurrently
When executed, this block will execute all the blocks passed in as the first argument concurrently. Once complete the outputs from all the blocks will be returned as an array
| Name | concurrently |
|---|---|
| Type | Function |
| Path | packages/blocks/src/building-blocks/execute-concurrently.ts |
Signature
concurrently: <A extends readonly Block<unknown, unknown>[], I = void, O = void>(actions: A) => Block<I, O>
Parameters
| Name | Type | Description |
|---|---|---|
| actions | A |
Return Value
Block<I, O>