Convenience function to start real-time process status display.
(
group: "RunningProcessGroup",
display_type: str = "auto",
update_interval: float = 0.1,
)
| 398 | |
| 399 | |
| 400 | def display_process_status( |
| 401 | group: "RunningProcessGroup", |
| 402 | display_type: str = "auto", |
| 403 | update_interval: float = 0.1, |
| 404 | ) -> threading.Thread: |
| 405 | """Convenience function to start real-time process status display.""" |
| 406 | |
| 407 | display = create_status_display(group, display_type) |
| 408 | display.config.update_interval = update_interval |
| 409 | |
| 410 | return display.start_display() |