(self)
| 639 | raise NotImplementedError |
| 640 | |
| 641 | def is_ready(self): |
| 642 | return bool(self.capi.fdb_future_is_ready(self.fpointer)) |
| 643 | |
| 644 | def block_until_ready(self): |
| 645 | # Checking readiness is faster than using the callback, so it saves us time if we are already |
no outgoing calls