Get AsyncResult instance for the specified task. Arguments: task_id (str): Task id to get result for.
(self, task_id, **kwargs)
| 871 | return EagerResult(task_id, retval, state, traceback=tb, name=self.name) |
| 872 | |
| 873 | def AsyncResult(self, task_id, **kwargs): |
| 874 | """Get AsyncResult instance for the specified task. |
| 875 | |
| 876 | Arguments: |
| 877 | task_id (str): Task id to get result for. |
| 878 | """ |
| 879 | return self._get_app().AsyncResult(task_id, backend=self.backend, |
| 880 | task_name=self.name, **kwargs) |
| 881 | |
| 882 | def signature(self, args=None, *starargs, **starkwargs): |
| 883 | """Create signature. |