123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .. currentmodule:: celery.app
- .. automodule:: celery.app
- .. contents::
- :local:
- Application
- -----------
- .. autoclass:: Celery
- .. attribute:: main
- Name of the `__main__` module. Required for standalone scripts.
- If set this will be used instead of `__main__` when automatically
- generating task names.
- .. autoattribute:: amqp
- .. autoattribute:: backend
- .. autoattribute:: loader
- .. autoattribute:: conf
- .. autoattribute:: control
- .. autoattribute:: log
- .. automethod:: config_from_object
- .. automethod:: config_from_envvar
- .. automethod:: config_from_cmdline
- .. automethod:: task
- .. automethod:: create_task_cls
- .. automethod:: send_task
- .. autoattribute:: AsyncResult
- .. autoattribute:: TaskSetResult
- .. automethod:: worker_main
- .. autoattribute:: Worker
- .. autoattribute:: Beat
- .. automethod:: broker_connection
- .. automethod:: with_default_connection
- .. automethod:: mail_admins
- .. automethod:: prepare_config
- .. automethod:: either
- Functions
- ---------
- .. autofunction:: app_or_default
|