Server Async Request API

BlockingQueryHandle

class couchbase_analytics.query_handle.BlockingQueryHandle
abstract fetch_status(options: Any | None = None, **kwargs: Any)
Return type:

BlockingQueryStatus

abstract cancel(options: Any | None = None, **kwargs: Any)

Cancel the query associated with the QueryHandle.

Return type:

None

BlockingQueryResultHandle

class couchbase_analytics.query_handle.BlockingQueryResultHandle
abstract fetch_results(options: FetchResultsOptions | None = None, **kwargs: Any)

Get all the results.

Return type:

BlockingQueryResult

abstract discard_results(options: Any | None = None, **kwargs: Any)

Discard the query results associated with the BlockingQueryResultHandle.

Return type:

None

BlockingQueryStatus

class couchbase_analytics.query_handle.BlockingQueryStatus
abstract results_ready()
Return type:

bool

abstract result_handle()
Return type:

BlockingQueryResultHandle