1
0
Fork 0
onnx-web/api/onnx_web/worker/utils.py

12 lines
241 B
Python
Raw Permalink Normal View History

from threading import Timer
class Interval(Timer):
"""
From https://stackoverflow.com/a/48741004
"""
def run(self):
while not self.finished.wait(self.interval):
self.function(*self.args, **self.kwargs)