Interface RunQueueOptions

Options for customizing the behavior of queues

interface RunQueueOptions {
    continuousWorkMaxEntries?: number;
    continuousWorkTimeLimitMSec?: number;
    maxParallel?: number;
}

Properties

continuousWorkMaxEntries?: number

The maximum number of entries that can be processed in a single run iteration.

Default Value

Number.MAX_SAFE_INTEGER
continuousWorkTimeLimitMSec?: number

The amount of time that can be used for processing in a single run iteration.

Default Value

10
maxParallel?: number

The maximum number of entries that can be executed at once.

Default Value

1

Generated using TypeDoc