MCPcopy Create free account
hub / github.com/apache/cassandra-python-driver / cancel_continuous_paging

Method cancel_continuous_paging

cassandra/cluster.py:5341–5345  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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):

Callers 1

test_paging_cancelMethod · 0.80

Calls 2

DriverExceptionClass · 0.90
cancelMethod · 0.45

Tested by 1

test_paging_cancelMethod · 0.64