bullmq - v5.76.5
    Preparing search index...

    Type Alias ParentKeyOpts

    Options used internally for parent/child relationship management when creating jobs (including associating a child with its parent, or creating a parent that starts in the waiting-children state).

    type ParentKeyOpts = {
        addToWaitingChildren?: boolean;
        parentDependenciesKey?: string;
        parentKey?: string;
    }
    Index

    Properties

    addToWaitingChildren?: boolean

    If true, the newly-created parent job will be placed into the parent queue's waiting-children state (waiting for children to complete) instead of wait.

    parentDependenciesKey?: string

    Redis key holding the parent's dependencies set.

    parentKey?: string

    Fully-qualified Redis key of the parent job.