MCPcopy Create free account
hub / github.com/apple/foundationdb / wait

Method wait

bindings/python/fdb/impl.py:744–748  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

742
743class FutureUInt64(Future):
744 def wait(self):
745 self.block_until_ready()
746 value = ctypes.c_uint64()
747 self.capi.fdb_future_get_uint64(self.fpointer, ctypes.byref(value))
748 return value.value
749
750class FutureKeyValueArray(Future):
751 def wait(self):

Callers

nothing calls this directly

Calls 1

block_until_readyMethod · 0.45

Tested by

no test coverage detected