MCPcopy
hub / github.com/celery/celery / starmap

Method starmap

celery/app/task.py:918–921  ·  view source on GitHub ↗

Create a :class:`~celery.canvas.xstarmap` task from ``it``.

(self, it)

Source from the content-addressed store, hash-verified

916 return xmap(self.s(), it, app=self.app)
917
918 def starmap(self, it):
919 """Create a :class:`~celery.canvas.xstarmap` task from ``it``."""
920 from celery import xstarmap
921 return xstarmap(self.s(), it, app=self.app)
922
923 def send_event(self, type_, retry=True, retry_policy=None, **fields):
924 """Send monitoring event message.

Callers 1

test_starmapMethod · 0.80

Calls 2

sMethod · 0.95
xstarmapFunction · 0.90

Tested by 1

test_starmapMethod · 0.64