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

Method stop

python/python3/tornado/ioloop.py:442–453  ·  view source on GitHub ↗

Stop the I/O loop. If the event loop is not currently running, the next call to `start()` will return immediately. Note that even after `stop` has been called, the `IOLoop` is not completely stopped until `IOLoop.start` has also returned. Some work that was

(self)

Source from the content-addressed store, hash-verified

440 raise NotImplementedError()
441
442 def stop(self) -> None:
443 """Stop the I/O loop.
444
445 If the event loop is not currently running, the next call to `start()`
446 will return immediately.
447
448 Note that even after `stop` has been called, the `IOLoop` is not
449 completely stopped until `IOLoop.start` has also returned.
450 Some work that was scheduled before the call to `stop` may still
451 be run before the `IOLoop` shuts down.
452 """
453 raise NotImplementedError()
454
455 def run_sync(self, func: Callable, timeout: Optional[float] = None) -> Any:
456 """Starts the `IOLoop`, runs the given function, and stops the loop.

Callers 7

runMethod · 0.95
timeout_callbackMethod · 0.95
gFunction · 0.45
closeMethod · 0.45
closeMethod · 0.45
periodic_pingMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected