(self)
| 742 | |
| 743 | class 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 | |
| 750 | class FutureKeyValueArray(Future): |
| 751 | def wait(self): |
nothing calls this directly
no test coverage detected