如何设置计时器&在python中清除一个计时器?

时间:2014-07-26 06:39:31

标签: python timer

我是python的新手。 现在,我想创建一个计时器。当它超时时,将采取一些行动。但是,我可以打断这个计时器并重置它。 伪代码如下所示:

def timeout()
    print "time out!"
    T.cancel()  #reset timer T
    T = Timer(60, timeout)  
    T.start()

T = Timer(60, timeout)

def interrupt()
    T.cancel()  #reset timer T
    T = Timer(60, timeout)
    T.start()

if __name__=='__main__'
    T.start()
    while true
         if something is true 
             interrupt

我提出的解决方案是在函数中断中取消定时器,然后创建一个新的定时器。但似乎取消了计时器并创建了一个新的计时器,这不是高性能。 有什么想法吗?

1 个答案:

答案 0 :(得分:4)

threading.Timer()课程可能是您正在寻找的内容:

from __future__ import print_function
from time import sleep
from random import random
from threading import Timer

def timeout():
    print("Alarm!")

t = Timer(10.0, timeout)
t.start()              # After 10 seconds, "Alarm!" will be printed

sleep(5.0)
if random() < 0.5:     # But half of the time
     t.cancel()        # We might just cancel the timer
     print('Canceling')