Stop monitoring a specific process
(self, process: RunningProcess)
| 1271 | monitor_thread.start() |
| 1272 | |
| 1273 | def stop_monitoring(self, process: RunningProcess) -> None: |
| 1274 | """Stop monitoring a specific process""" |
| 1275 | if process in self.monitoring_threads: |
| 1276 | del self.monitoring_threads[process] |
| 1277 | |
| 1278 | def shutdown(self) -> None: |
| 1279 | """Shutdown all monitoring threads""" |
no outgoing calls
no test coverage detected