Stop running the event loop. Every callback already scheduled will still run. This simply informs run_forever to stop looping after a complete iteration.
(self)
| 719 | return future.result() |
| 720 | |
| 721 | def stop(self): |
| 722 | """Stop running the event loop. |
| 723 | |
| 724 | Every callback already scheduled will still run. This simply informs |
| 725 | run_forever to stop looping after a complete iteration. |
| 726 | """ |
| 727 | self._stopping = True |
| 728 | |
| 729 | def close(self): |
| 730 | """Close the event loop. |
no outgoing calls
no test coverage detected