(self)
| 5339 | return self.response_future.get_all_query_traces(max_wait_sec_per) |
| 5340 | |
| 5341 | def cancel_continuous_paging(self): |
| 5342 | try: |
| 5343 | self.response_future._continuous_paging_session.cancel() |
| 5344 | except AttributeError: |
| 5345 | raise DriverException("Attempted to cancel paging with no active session. This is only for requests with ContinuousPagingOptions.") |
| 5346 | |
| 5347 | @property |
| 5348 | def was_applied(self): |