client-run-queue
    Preparing search index...

    Interface RunQueueOptions

    Options for customizing the behavior of queues

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

    Properties

    continuousWorkMaxEntries?: number

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

    Number.MAX_SAFE_INTEGER
    
    continuousWorkTimeLimitMSec?: number

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

    10
    
    maxParallel?: number

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

    1