()
| 65 | self.stop() |
| 66 | |
| 67 | def schedule_callback(): |
| 68 | self.called = False |
| 69 | self.io_loop.add_callback(callback) |
| 70 | # Store away the time so we can check if we woke up immediately |
| 71 | self.start_time = time.time() |
| 72 | |
| 73 | self.io_loop.add_timeout(self.io_loop.time(), schedule_callback) |
| 74 | self.wait() |
nothing calls this directly
no test coverage detected