(self)
| 764 | |
| 765 | class FutureKeyArray(Future): |
| 766 | def wait(self): |
| 767 | self.block_until_ready() |
| 768 | ks = ctypes.pointer(KeyStruct()) |
| 769 | count = ctypes.c_int() |
| 770 | self.capi.fdb_future_get_key_array(self.fpointer, ctypes.byref(ks), ctypes.byref(count)) |
| 771 | return [ctypes.string_at(x.key, x.key_length) for x in ks[0:count.value]] |
| 772 | |
| 773 | |
| 774 | class FutureStringArray(Future): |
nothing calls this directly
no test coverage detected