Calls the given callback on the next I/O loop iteration. Safe for use from a Python signal handler; should not be used otherwise.
(
self, callback: Callable, *args: Any, **kwargs: Any
)
| 641 | raise NotImplementedError() |
| 642 | |
| 643 | def add_callback_from_signal( |
| 644 | self, callback: Callable, *args: Any, **kwargs: Any |
| 645 | ) -> None: |
| 646 | """Calls the given callback on the next I/O loop iteration. |
| 647 | |
| 648 | Safe for use from a Python signal handler; should not be used |
| 649 | otherwise. |
| 650 | """ |
| 651 | raise NotImplementedError() |
| 652 | |
| 653 | def spawn_callback(self, callback: Callable, *args: Any, **kwargs: Any) -> None: |
| 654 | """Calls the given callback on the next IOLoop iteration. |
no outgoing calls