tidy3d.web.core.task_info.TaskStatus#
- class TaskStatus[source]#
- Bases: - Enum- The statuses that the task can be in. - Attributes - The task has been initialized. - The task is in the queue. - The task is in the preprocessing stage. - The task is running. - The task is in the postprocessing stage. - The task has completed successfully. - 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.