Class Job<DataType, ReturnType, NameType>

See

Job

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

gid: string | number
id?: string

Methods

  • Prepares a job to be passed to Sandbox.

    Returns JobProJsonSandbox

  • Parameters

    • token: string
    • duration: number

    Returns Promise<number>

  • Returns the batch of jobs for this job if any.

    Returns Job<any, any, string>[]

    See

    • Job
    • bullmq!JobPro | JobPro

    Example


  • 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<any[]>

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

  • 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

    • opts: MoveToWaitingChildrenOpts = {}

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

    Returns Promise<boolean>

    true if the job was moved

  • Set job as failed. This method will set the current job instance as failed, it is useful when processing batches to mark a certain job in a batch as failed while completing the rest.

    Parameters

    • err: Error

      The error object to be associated with the job.

    Returns void

  • Sets a batch of jobs for this job.

    Parameters

    • jobs: Job<any, any, string>[]

    Returns void

  • 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: JobProJsonRaw

      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>

  • Instantiates a JobPro instance based on a standard Job instance.

    Type Parameters

    • DataType = any

    • ResultType = any

    • NameType extends string = string

    Parameters

    • queue: MinimalQueue
    • job: Job<any, any, string>

    Returns Job<DataType, ResultType, NameType>

Generated using TypeDoc