Method
result
(self, id, blocking=False, timeout=None, backoff=1.15,
max_delay=1.0, revoke_on_timeout=False, preserve=False)
Source from the content-addressed store, hash-verified
| 789 | return Result(self, task) |
| 790 | |
| 791 | def result(self, id, blocking=False, timeout=None, backoff=1.15, |
| 792 | max_delay=1.0, revoke_on_timeout=False, preserve=False): |
| 793 | task_result = Result(self, Task(id=id)) |
| 794 | return task_result.get( |
| 795 | blocking=blocking, |
| 796 | timeout=timeout, |
| 797 | backoff=backoff, |
| 798 | max_delay=max_delay, |
| 799 | revoke_on_timeout=revoke_on_timeout, |
| 800 | preserve=preserve) |
| 801 | |
| 802 | |
| 803 | class Task(object): |