Create a :class:`~celery.canvas.xstarmap` task from ``it``.
(self, it)
| 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. |