码迷,mamicode.com
首页 > 其他好文 > 详细

threading.Timer 延迟执行实例代码

时间:2019-02-25 11:55:54      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:对比   time   eve   实例   执行   info   read   RKE   can   

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 延迟执行实例代码

标签:对比   time   eve   实例   执行   info   read   RKE   can   

原文地址:https://blog.51cto.com/windchasereric/2354369

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!