我正在尝试编写一个倒计时到给定时间的方法,除非给出重启命令,否则它将执行任务。但我不认为Python threading.Timer
类允许计时器可以取消。
import threading
def countdown(action):
def printText():
print 'hello!'
t = threading.Timer(5.0, printText)
if (action == 'reset'):
t.cancel()
t.start()
我知道上面的代码是错误的。非常感谢这里的一些指导。
答案 0 :(得分:31)
启动计时器后,您将调用cancel方法:
import time
import threading
def hello():
print "hello, world"
time.sleep(2)
t = threading.Timer(3.0, hello)
t.start()
var = 'something'
if var == 'something':
t.cancel()
您可以考虑在Thread上使用while循环,而不是使用 Timer 。
以下是从Nikolaus Gradwohl answer转到另一个问题的例子:
import threading
import time
class TimerClass(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.event = threading.Event()
self.count = 10
def run(self):
while self.count > 0 and not self.event.is_set():
print self.count
self.count -= 1
self.event.wait(1)
def stop(self):
self.event.set()
tmr = TimerClass()
tmr.start()
time.sleep(3)
tmr.stop()
答案 1 :(得分:13)
我不确定我是否理解正确。你想写这个例子中的东西吗?
>>> import threading
>>> t = None
>>>
>>> def sayHello():
... global t
... print "Hello!"
... t = threading.Timer(0.5, sayHello)
... t.start()
...
>>> sayHello()
Hello!
Hello!
Hello!
Hello!
Hello!
>>> t.cancel()
>>>
答案 2 :(得分:7)
threading.Timer
类 具有cancel
方法,虽然它不会取消线程,但它会停止计时器实际射击。实际发生的是cancel
方法设置threading.Event
,实际执行threading.Timer
的线程将在完成等待之后和实际执行回调之前检查该事件。
也就是说,定时器通常是在没有的情况下实现的为每个定时器使用单独的线程。最好的方法取决于你的程序实际在做什么(等待这个计时器),但任何带有事件循环的东西,比如GUI和网络框架,都有办法请求连接到eventloop的计时器。 / p>
答案 3 :(得分:1)
我不确定是否是最好的选择,但对我来说是这样的: t = timer_mgr(.....) 附加到列表“timers.append(t)”,然后在所有创建之后你可以调用:
for tm in timers:#threading.enumerate():
print "********", tm.cancel()
我的 timer_mgr() 类是这样的:
class timer_mgr():
def __init__(self, st, t, hFunction, id, name):
self.is_list = (type(st) is list)
self.st = st
self.t = t
self.id = id
self.hFunction = hFunction
self.thread = threading.Timer(t, self.handle_function, [id])
self.thread.name = name
def handle_function(self, id):
if self.is_list:
print "run_at_time:", datetime.now()
self.hFunction(id)
dt = schedule_fixed_times(datetime.now(), self.st)
print "next:", dt
self.t = (dt-datetime.now()).total_seconds()
else:
self.t = self.st
print "run_every", self.t, datetime.now()
self.hFunction(id)
self.thread = threading.Timer(self.t, self.handle_function, [id])
self.thread.start()
def start(self):
self.thread.start()
def cancel(self):
self.thread.cancel()
答案 4 :(得分:0)
受上述帖子的启发。 在Python中可取消和重置计时器。它使用线程 功能:启动,停止,重启,回调功能 输入:Timeout,sleep_chunk值和callback_function 可以在任何其他程序中使用或继承此类。也可以将参数传递给回调函数 定时器也应该在中间响应。不仅在完全睡眠时间结束后。因此,不要使用一个完整的睡眠,使用小块睡眠并继续循环检查事件对象。
import threading
import time
class TimerThread(threading.Thread):
def __init__(self, timeout=3, sleep_chunk=0.25, callback=None, *args):
threading.Thread.__init__(self)
self.timeout = timeout
self.sleep_chunk = sleep_chunk
if callback == None:
self.callback = None
else:
self.callback = callback
self.callback_args = args
self.terminate_event = threading.Event()
self.start_event = threading.Event()
self.reset_event = threading.Event()
self.count = self.timeout/self.sleep_chunk
def run(self):
while not self.terminate_event.is_set():
while self.count > 0 and self.start_event.is_set():
# print self.count
# time.sleep(self.sleep_chunk)
# if self.reset_event.is_set():
if self.reset_event.wait(self.sleep_chunk): # wait for a small chunk of timeout
self.reset_event.clear()
self.count = self.timeout/self.sleep_chunk # reset
self.count -= 1
if self.count <= 0:
self.start_event.clear()
#print 'timeout. calling function...'
self.callback(*self.callback_args)
self.count = self.timeout/self.sleep_chunk #reset
def start_timer(self):
self.start_event.set()
def stop_timer(self):
self.start_event.clear()
self.count = self.timeout / self.sleep_chunk # reset
def restart_timer(self):
# reset only if timer is running. otherwise start timer afresh
if self.start_event.is_set():
self.reset_event.set()
else:
self.start_event.set()
def terminate(self):
self.terminate_event.set()
#=================================================================
def my_callback_function():
print 'timeout, do this...'
timeout = 6 # sec
sleep_chunk = .25 # sec
tmr = TimerThread(timeout, sleep_chunk, my_callback_function)
tmr.start()
quit = '0'
while True:
quit = raw_input("Proceed or quit: ")
if quit == 'q':
tmr.terminate()
tmr.join()
break
tmr.start_timer()
if raw_input("Stop ? : ") == 's':
tmr.stop_timer()
if raw_input("Restart ? : ") == 'r':
tmr.restart_timer()