Example #1
0
 def chunks(self, it, n):
     """Creates a :class:`~celery.canvas.chunks` task for this task."""
     from celery import chunks
     return chunks(self.s(), it, n, app=self.app)
Example #2
0
 def chunks(self, it, n):
     """Create a :class:`~celery.canvas.chunks` task for this task."""
     from celery import chunks
     return chunks(self.s(), it, n, app=self.app)
Example #3
0
 def chunks(self, it, n):
     from celery import chunks
     return chunks(self.s(), it, n)