Notification that a TimerHandle has been cancelled.
(self, handle)
| 305 | # Methods scheduling callbacks. All these return Handles. |
| 306 | |
| 307 | def _timer_handle_cancelled(self, handle): |
| 308 | """Notification that a TimerHandle has been cancelled.""" |
| 309 | raise NotImplementedError |
| 310 | |
| 311 | def call_soon(self, callback, *args, context=None): |
| 312 | return self.call_later(0, callback, *args, context=context) |