The string status of a pending task.
The string status of a task which is to be retried.
The string status of a failed task.
The string status of a task that was successfully executed.
List of possible task statuses.
Django tuple of possible values for the task statuses, for usage in model/form fields choices argument.
Model for storing the result and status of a task.
Note Only used if you’re running the database backend.
The unique task id.
The current status for this task.
The result after successful/failed execution. If the task failed, this contains the execption it raised.
The date this task changed status.
Metadata model for periodic tasks.
The name of this task, as registered in the task registry.
The date this periodic task was last run. Used to find out when it should be run next.
The number of times this periodic task has been run.
The class/function for this task.