MCPcopy Index your code
hub / github.com/couchbase/couchbase-python-client / _get

Method _get

acouchbase/datastructures.py:927–941  ·  view source on GitHub ↗

Get the entire queuee.

(self, parent_span: Optional[WrappedSpan] = None)

Source from the content-addressed store, hash-verified

925 raise
926
927 async def _get(self, parent_span: Optional[WrappedSpan] = None) -> List:
928 """
929 Get the entire queuee.
930 """
931 op_type = KeyValueOperationType.Get
932 async with ObservableRequestHandler(op_type, self._impl.observability_instruments) as obs_handler:
933 req, transcoder = self._impl.request_builder.build_get_request(self._key,
934 obs_handler,
935 parent_span=parent_span)
936 return await self._execute_op(self._impl.get,
937 req,
938 obs_handler,
939 parent_span,
940 create_type=True,
941 transcoder=transcoder)
942
943 async def push(self, value: JSONType) -> None:
944 """

Callers 1

__anext__Method · 0.95

Calls 3

_execute_opMethod · 0.95
build_get_requestMethod · 0.80

Tested by

no test coverage detected