(self)
| 272 | return events, dropped, truncated |
| 273 | |
| 274 | def start(self) -> None: |
| 275 | with self._lock: |
| 276 | if self._thread and self._thread.is_alive(): |
| 277 | return |
| 278 | self._stop.clear() |
| 279 | self._thread = threading.Thread( |
| 280 | target=self._run, name="masfactory-visualizer-runtime", daemon=True |
| 281 | ) |
| 282 | self._thread.start() |
| 283 | |
| 284 | def stop(self) -> None: |
| 285 | self._stop.set() |
no outgoing calls
no test coverage detected