Class Job<DataType, ReturnType, NameType>

Type Parameters

  • DataType = any

  • ReturnType = any

  • NameType extends string = string

Hierarchy

  • Job<DataType, ReturnType, NameType>
    • Job

Constructors

  • Type Parameters

    • DataType = any

    • ReturnType = any

    • NameType extends string = string

    Parameters

    • queue: MinimalQueue
    • name: NameType

      The name of the Job

    • data: DataType

      The payload for this job.

    • opts: JobsProOptions = {}

      The options object for this job.

    • Optional id: string

    Returns Job<DataType, ReturnType, NameType>

Properties

attemptsMade: number

Number of attempts after the job has failed.

Default Value

0

data: DataType

The payload for this job.

failedReason: string

Reason for failing.

finishedOn?: number

Timestamp for when the job finished (completed or failed).

id?: string
name: NameType

The name of the Job

The options object for this job.

parent?: ParentKeys

Object that contains parentId (id) and parent queueKey.

parentKey?: string

Fully qualified key (including the queue prefix) pointing to the parent of this job.

processedOn?: number

Timestamp for when the job was processed.

progress: number | object

The progress a job has performed so far.

Default Value

0

returnvalue: ReturnType

The value returned by the processor when processing this job.

Default Value

null

stacktrace: string[]

Stacktrace for the error (for failed jobs).

Default Value

null

timestamp: number

Timestamp when the job was created (unless overridden with job options).

Accessors

  • get prefix(): string
  • Returns string

  • get queueName(): string
  • Returns string

    the queue name this job belongs to.

Methods

  • Adds the job to Redis.

    Parameters

    Returns Promise<string>

  • Prepares a job to be serialized for storage in Redis.

    Returns JobJson

  • Prepares a job to be passed to Sandbox.

    Returns JobJsonSandbox

  • Change delay of a delayed job.

    Parameters

    • delay: number

      milliseconds to be added to current time.

    Returns Promise<void>

    void

  • Marks a job to not be retried if it fails (even if attempts has been configured)

    Returns void

  • Extend the lock for this job.

    Parameters

    • token: string

      unique token for the lock

    • duration: number

      lock duration in milliseconds

    Returns Promise<number>

  • Get this jobs children result values if any.

    Type Parameters

    • CT = any

    Returns Promise<{
        [jobKey: string]: CT;
    }>

    Object mapping children job keys with their values.

  • Get children job keys if this job is a parent and has children.

    Parameters

    • Optional opts: DependenciesOpts

    Returns Promise<{
        nextProcessedCursor?: number;
        nextUnprocessedCursor?: number;
        processed?: Record<string, any>;
        unprocessed?: string[];
    }>

    dependencies separated by processed and unprocessed.

  • Get children job counts if this job is a parent and has children.

    Parameters

    • Optional opts: {
          processed?: boolean;
          unprocessed?: boolean;
      }
      • Optional processed?: boolean
      • Optional unprocessed?: boolean

    Returns Promise<{
        processed?: number;
        unprocessed?: number;
    }>

    dependencies count separated by processed and unprocessed.

  • Get current state.

    Returns Promise<JobState | "unknown">

    Returns one of these values: 'completed', 'failed', 'delayed', 'active', 'waiting', 'waiting-children', 'unknown'.

  • Returns Promise<boolean>

    true of the job is active.

  • Returns Promise<boolean>

    true if the job has completed.

  • Returns Promise<boolean>

    true if the job is delayed.

  • Returns Promise<boolean>

    true if the job has failed.

  • Returns Promise<boolean>

    true if the job is waiting.

  • Returns Promise<boolean>

    true if the job is waiting for children.

  • Logs one row of log data.

    Parameters

    • logRow: string

      string with log data to be logged.

    Returns Promise<number>

  • Moves a job to the completed queue. Returned job to be used with Queue.prototype.nextJobFromJobData.

    Parameters

    • returnValue: ReturnType

      The jobs success message.

    • token: string

      Worker token used to acquire completed job.

    • fetchNext: boolean = true

      True when wanting to fetch the next job.

    Returns Promise<[] | JobData>

    Returns the jobData of the next job in the waiting queue.

  • Moves the job to the delay set.

    Parameters

    • timestamp: number

      timestamp where the job should be moved back to "wait"

    Returns Promise<void>

  • Moves a job to the failed queue.

    Parameters

    • err: Error

      the jobs error message.

    • token: string

      token to check job is locked by current worker

    • fetchNext: boolean = false

      true when wanting to fetch the next job

    Returns Promise<void>

    void

  • Moves the job to the waiting-children set.

    Parameters

    • token: string

      Token to check job is locked by current worker

    • Optional opts: MoveToChildrenOpts

      The options bag for moving a job to waiting-children.

    Returns Promise<boolean>

    true if the job was moved

  • Promotes a delayed job so that it starts to be processed as soon as possible.

    Returns Promise<void>

  • Completely remove the job from the queue. Note, this call will throw an exception if the job is being processed when the call is performed.

    Returns Promise<void>

  • Attempts to retry the job. Only a job that has failed or completed can be retried.

    Parameters

    • Optional state: FinishedStatus

      completed / failed

    Returns Promise<void>

    If resolved and return code is 1, then the queue emits a waiting event otherwise the operation was not a success and throw the corresponding error. If the promise rejects, it indicates that the script failed to execute

  • Returns Omit<Job<DataType, ReturnType, NameType>, "toJSON" | "prefix" | "discard" | "queue" | "asJSON" | "asJSONSandbox" | "update" | "updateProgress" | "log" | "remove" | "extendLock" | "moveToCompleted" | "moveToFailed" | "isCompleted" | "isFailed" | "isDelayed" | "isWaitingChildren" | "isActive" | "isWaiting" | "queueName" | "getState" | "changeDelay" | "getChildrenValues" | "getDependencies" | "getDependenciesCount" | "waitUntilFinished" | "moveToDelayed" | "moveToWaitingChildren" | "promote" | "retry" | "addJob">

  • Updates a job's data

    Parameters

    • data: DataType

      the data that will replace the current jobs data.

    Returns Promise<void>

  • Updates a job's progress

    Parameters

    • progress: number | object

      number or object to be saved as progress.

    Returns Promise<void>

  • Returns a promise the resolves when the job has completed (containing the return value of the job), or rejects when the job has failed (containing the failedReason).

    Parameters

    • queueEvents: QueueEvents

      Instance of QueueEvents.

    • Optional ttl: number

      Time in milliseconds to wait for job to finish before timing out.

    Returns Promise<ReturnType>

  • Creates a new job and adds it to the queue.

    Type Parameters

    • T = any

    • R = any

    • N extends string = string

    Parameters

    • queue: MinimalQueue

      the queue where to add the job.

    • name: N

      the name of the job.

    • data: T

      the payload of the job.

    • Optional opts: JobsOptions

      the options bag for this job.

    Returns Promise<Job<T, R, N>>

  • Creates a bulk of jobs and adds them atomically to the given queue.

    Type Parameters

    • T = any

    • R = any

    • N extends string = string

    Parameters

    • queue: MinimalQueue

      the queue were to add the jobs.

    • jobs: {
          data: T;
          name: N;
          opts?: BulkJobOptions;
      }[]

      an array of jobs to be added to the queue.

    Returns Promise<Job<T, R, N>[]>

  • Fetches a Job from the queue given the passed job id.

    Type Parameters

    • T = any

    • R = any

    • N extends string = string

    Parameters

    • queue: MinimalQueue

      the queue where the job belongs to.

    • jobId: string

      the job id.

    Returns Promise<Job<T, R, N>>

  • Instantiates a Job from a JobJsonRaw object (coming from a deserialized JSON object)

    Type Parameters

    • T = any

    • R = any

    • N extends string = string

    Parameters

    • queue: MinimalQueue

      the queue where the job belongs to.

    • json: JobJsonRaw

      the plain object containing the job.

    • Optional jobId: string

      an optional job id (overrides the id coming from the JSON object)

    Returns Job<T, R, N>

Generated using TypeDoc