tidy3d.web.core.task_info.TaskStatus#

class TaskStatus[source]#

Bases: Enum

The statuses that the task can be in.

Attributes

INIT

The task has been initialized.

QUEUE

The task is in the queue.

PRE

The task is in the preprocessing stage.

RUN

The task is running.

POST

The task is in the postprocessing stage.

SUCCESS

The task has completed successfully.

ERROR

The task has completed with an error.

Inherited Common Usage

INIT = 'initialized'#

The task has been initialized.

QUEUE = 'queued'#

The task is in the queue.

PRE = 'preprocessing'#

The task is in the preprocessing stage.

RUN = 'running'#

The task is running.

POST = 'postprocessing'#

The task is in the postprocessing stage.

SUCCESS = 'success'#

The task has completed successfully.

ERROR = 'error'#

The task has completed with an error.