Interface NodeOpts

interface NodeOpts {
    depth?: number;
    id: string;
    maxChildren?: number;
    prefix?: string;
    queueName: string;
}

Properties

depth?: number

Maximum depth or levels to visit in the tree.

id: string

Root job id.

maxChildren?: number

Maximum quantity of children per type (processed, unprocessed).

prefix?: string

Prefix included in job key.

queueName: string

Root job queue name.

Generated using TypeDoc