Starts the I/O loop. The loop will run until one of the callbacks calls `stop()`, which will make the loop stop after the current event iteration completes.
(self)
| 417 | raise NotImplementedError() |
| 418 | |
| 419 | def start(self) -> None: |
| 420 | """Starts the I/O loop. |
| 421 | |
| 422 | The loop will run until one of the callbacks calls `stop()`, which |
| 423 | will make the loop stop after the current event iteration completes. |
| 424 | """ |
| 425 | raise NotImplementedError() |
| 426 | |
| 427 | def _setup_logging(self) -> None: |
| 428 | """The IOLoop catches and logs exceptions, so it's |
no outgoing calls