Return the accompanying AbortableAsyncResult instance.
(self, task_id)
| 141 | abstract = True |
| 142 | |
| 143 | def AsyncResult(self, task_id): |
| 144 | """Return the accompanying AbortableAsyncResult instance.""" |
| 145 | return AbortableAsyncResult(task_id, backend=self.backend) |
| 146 | |
| 147 | def is_aborted(self, **kwargs): |
| 148 | """Return true if task is aborted. |
no test coverage detected