Skip to main content

Enumeration: PreconditionRunMode

The run mode for a PreconditionContainerArray.

Since

1.0.0

Enumeration Members

Enumeration MemberValueDescriptionDefined in
Parallel1All entries are run in parallel using Promise.all, then the results are processed after all of them have completed. Since 1.0.0projects/framework/src/lib/utils/preconditions/PreconditionContainerArray.ts:32
Sequential0The 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.0projects/framework/src/lib/utils/preconditions/PreconditionContainerArray.ts:25