JobStatus#
Module: iqm.iqm_server_client.models
- class iqm.iqm_server_client.models.JobStatus(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)#
Bases:
StrEnumJob statuses in IQMServer.
Attributes
Job is in a queue, waiting to be executed.
Job is being executed.
Job has completed successfully.
Job has failed.
Job has been cancelled by the user or the admin.
Methods
Statuses from which the execution can't continue.
- WAITING = 'waiting'#
Job is in a queue, waiting to be executed.
- PROCESSING = 'processing'#
Job is being executed.
- COMPLETED = 'completed'#
Job has completed successfully.
- FAILED = 'failed'#
Job has failed.
- CANCELLED = 'cancelled'#
Job has been cancelled by the user or the admin.
Inheritance
