@camunda8/orchestration-cluster-api
    Preparing search index...

    Class RetryableJobError

    A retryable job failure: the handler could not complete the job now, but a later activation might succeed. Mapped to failJob with retries - 1 and an optional server-side re-activation backoff.

    Hierarchy

    • YieldableError<this> & {} & Readonly<
          {
              cause?: unknown;
              message: string;
              retryBackoff?: Input;
              variables?: { readonly [key: string]: unknown };
          },
      >
      • RetryableJobError
    Index
    • Parameters

      • args: {
            cause?: unknown;
            message: string;
            retryBackoff?: Input;
            variables?: { readonly [key: string]: unknown };
        }
        • Optional Readonlycause?: unknown
        • Readonlymessage: string
        • Optional ReadonlyretryBackoff?: Input

          Server-side delay before the job becomes re-activatable (failJob retryBackOff).

        • Optional Readonlyvariables?: { readonly [key: string]: unknown }

          Optional variables to attach to the job on failure.

      Returns RetryableJobError

    retryBackoff?: Input

    Server-side delay before the job becomes re-activatable (failJob retryBackOff).

    variables?: { readonly [key: string]: unknown }

    Optional variables to attach to the job on failure.