Stone.js API
    Preparing search index...

    Options controlling how a job is dispatched and retried.

    interface JobOptions {
        backoff?: number;
        delay?: number;
        maxAttempts?: number;
        queue?: string;
    }
    Index
    backoff?: number

    Base backoff in seconds between retries (grows linearly with the attempt).

    delay?: number

    Seconds to wait before the job becomes available.

    maxAttempts?: number

    Maximum attempts before the job is considered failed (defaults to 1).

    queue?: string

    The named queue to place the job on (defaults to default).