This document describes Celery 3.0. For development docs, go here.
The task implementation has been moved to celery.app.task.
This contains the backward compatible Task class used in the old API, and shouldn’t be used in new applications.
alias of Task
A periodic task is a task that adds itself to the CELERYBEAT_SCHEDULE setting.
Meta class for tasks.
Automatically registers the task in the task registry, except if the abstract attribute is set.
If no name attribute is provided, then no name is automatically set to the name of the module it was defined in, and the class name.