Calls the given callback on the next I/O loop iteration. It is safe to call this method from any thread at any time, except from a signal handler. Note that this is the **only** method in `IOLoop` that makes this thread-safety guarantee; all other interaction with t
(self, callback: Callable, *args: Any, **kwargs: Any)
| 644 | raise NotImplementedError() |
| 645 | |
| 646 | def add_callback(self, callback: Callable, *args: Any, **kwargs: Any) -> None: |
| 647 | """Calls the given callback on the next I/O loop iteration. |
| 648 | |
| 649 | It is safe to call this method from any thread at any time, |
| 650 | except from a signal handler. Note that this is the **only** |
| 651 | method in `IOLoop` that makes this thread-safety guarantee; all |
| 652 | other interaction with the `IOLoop` must be done from that |
| 653 | `IOLoop`'s thread. `add_callback()` may be used to transfer |
| 654 | control from other threads to the `IOLoop`'s thread. |
| 655 | """ |
| 656 | raise NotImplementedError() |
| 657 | |
| 658 | def add_callback_from_signal( |
| 659 | self, callback: Callable, *args: Any, **kwargs: Any |
no outgoing calls