bunqueue v2.8 API referenceall versions · guide
bunqueue
    Preparing search index...

    Interface FlowStep<T>

    Step definition in a flow (legacy bunqueue API)

    interface FlowStep<T = unknown> {
        children?: FlowStep<T>[];
        data: T;
        name: string;
        opts?: JobOptions;
        queueName: string;
    }

    Type Parameters

    • T = unknown
    Index
    children?: FlowStep<T>[]

    Child steps (for tree structures)

    data: T

    Job data

    name: string

    Job name

    opts?: JobOptions

    Job options

    queueName: string

    Queue name