| 923 | |
| 924 | |
| 925 | class 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 | |
| 933 | class FormerFuture(_FDBBase): |
no outgoing calls
no test coverage detected