Python threading.timer-每'n'秒重复一次函数

Python threading.timer-每'n'秒重复一次函数,第1张

Python threading.timer-每'n'秒重复一次函数

最好的方法是一次启动计时器线程。在计时器线程中,你需要编写以下代码

class MyThread(Thread):    def __init__(self, event):        Thread.__init__(self)        self.stopped = event    def run(self):        while not self.stopped.wait(0.5): print("my thread") # call a function

然后,在启动计时器的代码中,可以

set
停止事件来停止计时器。

stopFlag = Event()thread = MyThread(stopFlag)thread.start()# this will stop the timerstopFlag.set()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4990547.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存