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)
| 432 | raise NotImplementedError() |
| 433 | |
| 434 | def start(self) -> None: |
| 435 | """Starts the I/O loop. |
| 436 | |
| 437 | The loop will run until one of the callbacks calls `stop()`, which |
| 438 | will make the loop stop after the current event iteration completes. |
| 439 | """ |
| 440 | raise NotImplementedError() |
| 441 | |
| 442 | def stop(self) -> None: |
| 443 | """Stop the I/O loop. |
no outgoing calls