MCPcopy Create free account
hub / github.com/EasyIME/PIME / add_callback_from_signal

Method add_callback_from_signal

python/python3/tornado/ioloop.py:643–651  ·  view source on GitHub ↗

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
    )

Source from the content-addressed store, hash-verified

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.

Callers 3

initializeMethod · 0.45
_try_cleanup_processMethod · 0.45

Calls

no outgoing calls