python函数反复调用自身_Python threading 单线程 timer重复调用函数

项目中需要使用定时器,每次都使用构造器函数调用:

timer = threading.Timer(timerFlag, upload_position)

timer.start()

打印线程后发现,每次都会创建一个新的子线程,虽然活跃的线程只有一个,但是也是种资源浪费:

print("threading active = {} \n \n".format(threading.enumerate()))

#打印

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

阅读源码和文档

class Timer(Thread):

"""Call a function after a specified number of seconds:

t = Timer(30.0, f, args=None, kwargs=None)

t.start()

t.cancel() # stop the timer's action if it's still waiting

"""

def __init__(self, interval, function, args=None, kwargs=None):

Thread.__init__(self)

self.interval = interval

self.function = function

self.args = args if args is not None else []

self.kwargs = kwargs if kwargs is not None else {}

self.finished = Event()

def cancel(self):

"""Stop the timer if it hasn't finished yet."""

self.finished.set()

def run(self):

self.finished.wait(self.interval)

if not self.finished.is_set():

self.function(*self.args, **self.kwargs)

self.finished.set()

# Special thread class to represent the main thread

# This is garbage collected through an exit handler

发现,其实Timer是threading的子类,用wait实现了定时效果,绑定了入参function,于是修改代码如下

def startTimer():

global timer

if timer != None:

timer.finished.wait(timerFlag)

timer.function()

else:

timer = threading.Timer(timerFlag, upload_position)

timer.start()

打印结果:

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

threading active = [<_MainThread(MainThread, stopped 140735596835712)>, ]

始终只有一个线程且重复调用函数方法~End~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值