interface JobProgress {
    etaMax?: number;
    etaMin?: number;
    etaSeconds?: number;
    jobId: string;
    progress?: number;
    projectId: string;
    step?: number;
    stepCount?: number;
    type: "progress";
}

Hierarchy (View Summary)

Properties

etaMax?: number

Upper bound of the worker's ETA confidence interval, in seconds. 0 (with etaMin: 0) means the worker had no interval for this step.

etaMin?: number

Lower bound of the worker's ETA confidence interval, in seconds.

etaSeconds?: number

Worker's time-remaining estimate in seconds, when reported with the step. 0 means the worker had no estimate for this step.

jobId: string
progress?: number
projectId: string
step?: number
stepCount?: number
type: "progress"