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

    Interface ForwardOptions

    Options for queue.forward()

    interface ForwardOptions {
        concurrency?: number;
        durable?: boolean;
        queue?: string;
        to: ConnectionOptions;
    }
    Index
    concurrency?: number

    Parallel forwards (default: 4)

    durable?: boolean

    Push to the remote with durable: true (immediate fsync server-side)

    queue?: string

    Remote queue name (default: same as the source queue)

    Remote server connection (host/port/tls/token...)