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

Class Key

bindings/python/fdb/impl.py:925–930  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

923
924
925class Key(FutureString):
926 def _getter(self):
927 key = ctypes.pointer(ctypes.c_byte())
928 key_length = ctypes.c_int()
929 self.capi.fdb_future_get_key(self.fpointer, ctypes.byref(key), ctypes.byref(key_length))
930 self.value = ctypes.string_at(key, key_length.value)
931
932
933class FormerFuture(_FDBBase):

Callers 2

get_keyMethod · 0.70
get_versionstampMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected