Interface SandboxedJobPro<T, R>

A job that is being processed in a sandbox.

interface SandboxedJobPro<T, R> {
    data: T;
    gid?: string;
    opts: JobsProOptions;
    returnValue: R;
}

Type Parameters

  • T = any
  • R = any

Hierarchy

  • Omit<SandboxedJob, "data" | "opts" | "returnValue">
    • SandboxedJobPro

Properties

data: T
gid?: string

The group id of the job.

returnValue: R