(self, timer)
| 273 | pass |
| 274 | |
| 275 | def add_timer(self, timer): |
| 276 | self._timers.add_timer(timer) |
| 277 | |
| 278 | # This function is called from a different thread than the event loop |
| 279 | # thread, so for this call to be thread safe, we must wake up the loop |
| 280 | # in case it's stuck at a select |
| 281 | self.wake_loop() |
| 282 | |
| 283 | def _cleanup(self): |
| 284 | global _dispatcher_map |
no test coverage detected