Spaces:
Running
Running
| import threading | |
| import time | |
| import pipe | |
| from io_utils import pop_job_from_pipe | |
| def start_process_run_job(): | |
| try: | |
| print("Running jobs in thread") | |
| global thread | |
| thread = threading.Thread(target=run_job) | |
| thread.daemon = True | |
| thread.do_run = True | |
| pipe.init() | |
| thread.start() | |
| except Exception as e: | |
| print("Failed to start thread: ", e) | |
| def stop_thread(): | |
| print("Stop thread") | |
| thread.do_run = False | |
| def run_job(): | |
| while True: | |
| try: | |
| pop_job_from_pipe() | |
| time.sleep(10) | |
| except KeyboardInterrupt: | |
| print("KeyboardInterrupt stop background thread") | |
| stop_thread() | |
| break | |