Użyj wątek zawierający pętlę
from threading import Thread
import time
def background_task():
while not background_task.cancelled:
self.mqConn.heartbeat_tick()
time.sleep(30)
background_task.cancelled = False
t = Thread(target=background_task)
t.start()
background_task.cancelled = True
Alternatywnie, można podklasy stoper, aby anulować proste:
from threading import Timer
class RepeatingTimer(Timer):
def run(self):
while not self.finished.is_set():
self.function(*self.args, **self.kwargs)
self.finished.wait(self.interval)
t = RepeatingTimer(30.0, self.mqConn.heartbeat_tick)
t.start() # every 30 seconds, call heartbeat_tick
# later
t.cancel() # cancels execution
To może być ważne, aby wspomnieć, że to * nie * wykonać co 30 sekund, jeśli 'heartbeat_tick()' zajmuje znaczną ilość czasu – goncalopp
Tak, to wola przynajmniej przez 30 sekund za każdym razem. Co najwyżej 30 sekund jest trochę trudniejsze. – Eric
Jeśli funkcja pierwszego planu była związana z procesorem, czy wątek tła byłby uniemożliwiony przez GIL? –