Enumeration: PreconditionRunMode
Defined in: projects/framework/src/lib/utils/preconditions/PreconditionContainerArray.ts:19
The run mode for a PreconditionContainerArray.
Since
1.0.0
Enumeration Members
| Enumeration Member | Value | Description | Defined in | 
|---|---|---|---|
| Parallel | 1 | All entries are run in parallel using Promise.all, then the results are processed after all of them have completed. Since 1.0.0 | projects/framework/src/lib/utils/preconditions/PreconditionContainerArray.ts:32 | 
| Sequential | 0 | The entries are run sequentially, this is the default behaviour and can be slow when doing long asynchronous tasks, but is performance savvy. Since 1.0.0 | projects/framework/src/lib/utils/preconditions/PreconditionContainerArray.ts:25 |