Create a :class:`~celery.canvas.xmap` task from ``it``.
(self, it)
| 911 | return chunks(self.s(), it, n, app=self.app) |
| 912 | |
| 913 | def map(self, it): |
| 914 | """Create a :class:`~celery.canvas.xmap` task from ``it``.""" |
| 915 | from celery import xmap |
| 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``.""" |