(self)
| 890 | return 0 |
| 891 | |
| 892 | def wait_for_ready_to_run(self): |
| 893 | while not self.ready_to_run: |
| 894 | # busy wait until we receive run command |
| 895 | self.process_internal_commands() |
| 896 | self._py_db_command_thread_event.clear() |
| 897 | self._py_db_command_thread_event.wait(TIMEOUT_FAST) |
| 898 | |
| 899 | def on_initialize(self): |
| 900 | """ |
no test coverage detected