Enqueue a problem to download results from the server. Args: future (:class:`~dwave.cloud.computation.Future`): Future object corresponding to the remote computation. This method is thread-safe.
(self, future)
| 1766 | |
| 1767 | @_ensure_active(allow_while_closing=True) |
| 1768 | def _load(self, future): |
| 1769 | """Enqueue a problem to download results from the server. |
| 1770 | |
| 1771 | Args: |
| 1772 | future (:class:`~dwave.cloud.computation.Future`): |
| 1773 | Future object corresponding to the remote computation. |
| 1774 | |
| 1775 | This method is thread-safe. |
| 1776 | """ |
| 1777 | self._load_queue.put(future) |
| 1778 | |
| 1779 | def _do_load_results(self): |
| 1780 | """Submit a query asking for the results for a particular problem. |
no test coverage detected