Stop the event loop as soon as reasonable. Exactly how soon that is may depend on the implementation, but no more I/O callbacks should be scheduled.
(self)
| 268 | raise NotImplementedError |
| 269 | |
| 270 | def stop(self): |
| 271 | """Stop the event loop as soon as reasonable. |
| 272 | |
| 273 | Exactly how soon that is may depend on the implementation, but |
| 274 | no more I/O callbacks should be scheduled. |
| 275 | """ |
| 276 | raise NotImplementedError |
| 277 | |
| 278 | def is_running(self): |
| 279 | """Return whether the event loop is currently running.""" |