See :meth:`join`. This is here for API compatibility with :class:`AsyncResult`, in addition it uses :meth:`join_native` if available for the current result backend.
(self, timeout=None, propagate=True, interval=0.5,
callback=None, no_ack=True, on_message=None,
disable_sync_subtasks=True, on_interval=None)
| 696 | return self.results[index] |
| 697 | |
| 698 | def get(self, timeout=None, propagate=True, interval=0.5, |
| 699 | callback=None, no_ack=True, on_message=None, |
| 700 | disable_sync_subtasks=True, on_interval=None): |
| 701 | """See :meth:`join`. |
| 702 | |
| 703 | This is here for API compatibility with :class:`AsyncResult`, |
| 704 | in addition it uses :meth:`join_native` if available for the |
| 705 | current result backend. |
| 706 | """ |
| 707 | return (self.join_native if self.supports_native_join else self.join)( |
| 708 | timeout=timeout, propagate=propagate, |
| 709 | interval=interval, callback=callback, no_ack=no_ack, |
| 710 | on_message=on_message, disable_sync_subtasks=disable_sync_subtasks, |
| 711 | on_interval=on_interval, |
| 712 | ) |
| 713 | |
| 714 | def join(self, timeout=None, propagate=True, interval=0.5, |
| 715 | callback=None, no_ack=True, on_message=None, |
no outgoing calls