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)
| 724 | return future.result() |
| 725 | |
| 726 | def stop(self): |
| 727 | """Stop running the event loop. |
| 728 | |
| 729 | Every callback already scheduled will still run. This simply informs |
| 730 | run_forever to stop looping after a complete iteration. |
| 731 | """ |
| 732 | self._stopping = True |
| 733 | |
| 734 | def close(self): |
| 735 | """Close the event loop. |
no outgoing calls
no test coverage detected