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)
| 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. |
no outgoing calls
no test coverage detected