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)
| 439 | raise NotImplementedError() |
| 440 | |
| 441 | def start(self) -> None: |
| 442 | """Starts the I/O loop. |
| 443 | |
| 444 | The loop will run until one of the callbacks calls `stop()`, which |
| 445 | will make the loop stop after the current event iteration completes. |
| 446 | """ |
| 447 | raise NotImplementedError() |
| 448 | |
| 449 | def stop(self) -> None: |
| 450 | """Stop the I/O loop. |
no outgoing calls