(self, args=None, kwargs=None, **opts)
| 1382 | ) |
| 1383 | |
| 1384 | def apply_async(self, args=None, kwargs=None, **opts): |
| 1385 | # need to evaluate generators |
| 1386 | args = args if args else () |
| 1387 | kwargs = kwargs if kwargs else {} |
| 1388 | task, it = self._unpack_args(self.kwargs) |
| 1389 | return self.type.apply_async( |
| 1390 | (), {'task': task, 'it': list(it)}, |
| 1391 | route_name=task_name_from(self.kwargs.get('task')), **opts |
| 1392 | ) |
| 1393 | |
| 1394 | |
| 1395 | @Signature.register_type() |
nothing calls this directly
no test coverage detected