qunicorn_core.static.enums.job_state module

class qunicorn_core.static.enums.job_state.JobState(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)

Bases: StrEnum

Enum to save the different states of the jobs

Values:

READY: Job is ready to use RUNNING: Job is currently executing a quantum circuit FINISHED: Job finished the execution BLOCKED: Job is blocked and cannot be used for other purposes ERROR: When an error occurred while executing a quantum circuit CANCELED: Job execution has been successfully canceled

BLOCKED = 'BLOCKED'
CANCELED = 'CANCELED'
ERROR = 'ERROR'
FINISHED = 'FINISHED'
READY = 'READY'
RUNNING = 'RUNNING'