interface ProjectQueued {
    estimatedStartSeconds?: null | number;
    projectId: string;
    queuePosition: number;
    queueStatus?: "waiting" | "no-workers";
    type: "queued";
}

Hierarchy (View Summary)

Properties

estimatedStartSeconds?: null | number

Server-provided estimate of seconds until a worker starts the project, or null when no estimate is currently available.

projectId: string
queuePosition: number
queueStatus?: "waiting" | "no-workers"

'no-workers' when nothing currently connected can run this project's model, in which case estimatedStartSeconds is null and the project waits for a worker to come online.

type: "queued"