Run the event loop until a Future is done. Return the Future's result, or raise its exception.
(self, future)
| 261 | raise NotImplementedError |
| 262 | |
| 263 | def run_until_complete(self, future): |
| 264 | """Run the event loop until a Future is done. |
| 265 | |
| 266 | Return the Future's result, or raise its exception. |
| 267 | """ |
| 268 | raise NotImplementedError |
| 269 | |
| 270 | def stop(self): |
| 271 | """Stop the event loop as soon as reasonable. |
no outgoing calls