threading.Timer 延迟执行实例代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了threading.Timer 延迟执行实例代码相关的知识,希望对你有一定的参考价值。

threading.Timer 实现延迟执行的实例代码

import time
import threading
import logging

FORMAT = "%(asctime)s %(threadName)s %(thread)d %(message)s"
logging.basicConfig(format=FORMAT, level=logging.INFO)

def worker():
    logging.info(‘in worker‘)
    time.sleep(2)

t = threading.Timer(5, worker)
t.setName(‘w1‘)
# t.cancel()   # 尝试减少等待时间对比
t.start()
print(threading.enumerate())
# t.cancel()  # 尝试取消注释对比
time.sleep(8)  # 尝试减少等待时间对比
print(threading.enumerate())

以上是关于threading.Timer 延迟执行实例代码的主要内容,如果未能解决你的问题,请参考以下文章

线程进行定时操作

AppDomain、序列化和 System.Threading.Timer 问题

System.Threading.Timer

为啥 System.Timers.Timer 能在 GC 中存活,而 System.Threading.Timer 不能?

定时器:Timer:System.Threading.Timer类(转)

Python3.x:简单时间调度Timer(间隔时间执行)