Threading.Timer:以指定的時間間隔重複執行函數
Python 的threading.Timer 模組提供了一種方便的方法來安排函數在指定的時間運行間隔。但是,使用者在嘗試控制這些計時器的執行時可能會遇到挑戰。
一個常見問題是重新啟動計時器時發生的 RuntimeError。原因是threading.Timer物件只能啟動一次。為了解決這個問題,建議建立一個單獨的執行緒來管理計時器,而不是多次重新啟動同一個計時器。
以下是如何實現此方法的範例:
import threading import time def my_function(): print("Function called") # Create an event to signal when the thread should stop stop_event = threading.Event() # Define a thread class that runs the timer class TimerThread(threading.Thread): def run(self): while not stop_event.is_set(): # Execute the function at specified intervals time.sleep(0.5) my_function() # Create and start the timer thread timer_thread = TimerThread() timer_thread.start() # Pause the timer by setting the stop_event time.sleep(5) stop_event.set() # Wait for the thread to finish timer_thread.join()
在此範例中,TimerThread 啟動一次並無限期運行,定時器邏輯封裝在 run() 方法中。要控制計時器,可以設定 stop_event 來通知執行緒停止運作。這種方法可以更好地控制計時器,並避免與重新啟動計時器物件相關的 RuntimeError。
以上是在Python中重新啟動`threading.Timer`物件時如何處理執行階段錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!