예제 #1
0
파일: task.py 프로젝트: chillbear/celery
 def starmap(self, it):
     """Creates a :class:`~celery.canvas.xstarmap` task from ``it``."""
     from celery import xstarmap
     return xstarmap(self.s(), it, app=self.app)
예제 #2
0
파일: task.py 프로젝트: NguyenMo2610/it4421
 def starmap(self, it):
     """Create a :class:`~celery.canvas.xstarmap` task from ``it``."""
     from celery import xstarmap
     return xstarmap(self.s(), it, app=self.app)
예제 #3
0
파일: task.py 프로젝트: markferrer/celery
 def starmap(self, it):
     from celery import xstarmap
     return xstarmap(self.s(), it)