JobStatus#

class pennylane_calculquebec.utility.api.JobStatus(*values)#

Bases: Enum

Possible lifecycle states of a MonarQ job.

SUCCEEDED#

the job finished successfully

FAILED#

the job encountered an error during execution

QUEUED#

the job is waiting in the execution queue

RUNNING#

the job is currently being executed

CANCELLED#

the job was cancelled before completion

SUCCEEDED = 'SUCCEEDED'#
FAILED = 'FAILED'#
QUEUED = 'QUEUED'#
RUNNING = 'RUNNING'#
CANCELLED = 'CANCELLED'#