react-bindings
    Preparing search index...

    Interface DefaultQueueProviderProps

    interface DefaultQueueProviderProps {
        cancelAllOnUnmount?: boolean;
        continuousWorkMaxEntries?: number;
        continuousWorkTimeLimitMSec?: number;
        idPrefix: string;
        maxParallel?: number;
    }

    Hierarchy

    • RunQueueOptions
      • DefaultQueueProviderProps
    Index

    Properties

    cancelAllOnUnmount?: boolean

    If true, cancelAll is called on the associated queue whenever this component is unmounted or whenever the idPrefix or other options change.

    false

    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
    
    idPrefix: string

    A technical, but human-readable ID prefix, which isn't guaranteed to be unique. This will be suffixed by ':default'

    maxParallel?: number

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

    1