|
@@ -268,7 +268,7 @@ class Task(object):
|
|
|
exchange_type=None):
|
|
|
"""Get a celery task message publisher.
|
|
|
|
|
|
- :rtype: :class:`celery.messaging.TaskPublisher`.
|
|
|
+ :rtype :class:`celery.messaging.TaskPublisher`:
|
|
|
|
|
|
Please be sure to close the AMQP connection when you're done
|
|
|
with this object, i.e.:
|
|
@@ -293,7 +293,7 @@ class Task(object):
|
|
|
connect_timeout=conf.BROKER_CONNECTION_TIMEOUT):
|
|
|
"""Get a celery task message consumer.
|
|
|
|
|
|
- :rtype: :class:`celery.messaging.TaskConsumer`.
|
|
|
+ :rtype :class:`celery.messaging.TaskConsumer`:
|
|
|
|
|
|
Please be sure to close the AMQP connection when you're done
|
|
|
with this object. i.e.:
|
|
@@ -331,7 +331,7 @@ class Task(object):
|
|
|
|
|
|
See :func:`celery.execute.apply_async` for more information.
|
|
|
|
|
|
- :rtype: :class:`celery.result.AsyncResult`
|
|
|
+ :returns: :class:`celery.result.AsyncResult`
|
|
|
|
|
|
|
|
|
"""
|
|
@@ -413,7 +413,7 @@ class Task(object):
|
|
|
|
|
|
:param args: positional arguments passed on to the task.
|
|
|
:param kwargs: keyword arguments passed on to the task.
|
|
|
- :rtype: :class:`celery.result.EagerResult`
|
|
|
+ :rtype :class:`celery.result.EagerResult`:
|
|
|
|
|
|
See :func:`celery.execute.apply`.
|
|
|
|