Return whether the event loop is currently running.
(self)
| 276 | raise NotImplementedError |
| 277 | |
| 278 | def is_running(self): |
| 279 | """Return whether the event loop is currently running.""" |
| 280 | raise NotImplementedError |
| 281 | |
| 282 | def is_closed(self): |
| 283 | """Returns True if the event loop was closed.""" |
no outgoing calls