Close and stop monitoring. open() restarts the monitor after closing.
(self)
| 110 | self._executor.close() |
| 111 | |
| 112 | async def close(self) -> None: |
| 113 | """Close and stop monitoring. |
| 114 | |
| 115 | open() restarts the monitor after closing. |
| 116 | """ |
| 117 | self.gc_safe_close() |
| 118 | |
| 119 | async def join(self) -> None: |
| 120 | """Wait for the monitor to stop.""" |
nothing calls this directly
no test coverage detected