Skip to main content

Enumeration: PreconditionRunMode

The run mode for a PreconditionContainerArray.

Since

1.0.0

Enumeration Members

Parallel

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

Defined in

projects/framework/src/lib/utils/preconditions/PreconditionContainerArray.ts:32


Sequential

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

Defined in

projects/framework/src/lib/utils/preconditions/PreconditionContainerArray.ts:25