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

Method wait

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

Source from the content-addressed store, hash-verified

773
774class FutureStringArray(Future):
775 def wait(self):
776 self.block_until_ready()
777 strings = ctypes.pointer(ctypes.c_char_p())
778 count = ctypes.c_int()
779 self.capi.fdb_future_get_string_array(self.fpointer, ctypes.byref(strings), ctypes.byref(count))
780 return list(strings[0:count.value])
781
782
783class replaceable_property(object):

Callers

nothing calls this directly

Calls 1

block_until_readyMethod · 0.45

Tested by

no test coverage detected