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

Method wait

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

Source from the content-addressed store, hash-verified

735
736class FutureInt64(Future):
737 def wait(self):
738 self.block_until_ready()
739 value = ctypes.c_int64()
740 self.capi.fdb_future_get_int64(self.fpointer, ctypes.byref(value))
741 return value.value
742
743class FutureUInt64(Future):
744 def wait(self):

Callers

nothing calls this directly

Calls 1

block_until_readyMethod · 0.45

Tested by

no test coverage detected