MCPcopy
hub / github.com/celery/celery / delay

Method delay

celery/canvas.py:351–353  ·  view source on GitHub ↗

Shortcut to :meth:`apply_async` using star arguments.

(self, *partial_args, **partial_kwargs)

Source from the content-addressed store, hash-verified

349 return self.type(*args, **kwargs)
350
351 def delay(self, *partial_args, **partial_kwargs):
352 """Shortcut to :meth:`apply_async` using star arguments."""
353 return self.apply_async(partial_args, partial_kwargs)
354
355 def apply(self, args=None, kwargs=None, **options):
356 """Call task locally.

Callers 1

runMethod · 0.45

Calls 1

apply_asyncMethod · 0.95

Tested by

no test coverage detected