Beignet API reference
    Preparing search index...

    Interface FixedJobRetryOptions

    Options for a fixed job retry policy.

    interface FixedJobRetryOptions {
        attempts: number;
        delay: JobDuration;
        retryIf?: JobRetryPredicate;
    }
    Index
    attempts: number

    Maximum total attempts, including the first attempt.

    Delay between attempts.

    Optional app-owned retry classifier.