类方法的python线程计时器

时间:2012-08-06 05:21:25

标签: python multithreading timer

我有一个代码块,用于每隔30秒运行一段代码

def hello():
    print "hello, world"
    t = threading.Timer(30.0, hello)
    t.start()

下面的一个是一个类的方法,我真的想每30秒运行一次,但是我遇到了问题。

def continousUpdate(self, contractId):    
    print 'hello, world new'
    t = threading.Timer(30.0, self.continousUpdate, [self, contractId],{} )
    t.start()

当我运行它时,我收到以下错误

pydev debugger: starting
hello, world new
Exception in thread Thread-4:
Traceback (most recent call last):
  File "C:\Python27\lib\threading.py", line 552, in __bootstrap_inner
   self.run()
  File "C:\Python27\lib\threading.py", line 756, in run
   self.function(*self.args, **self.kwargs)
TypeError: continousUpdate() takes exactly 2 arguments (3 given)

我也试过

def continousUpdate(self, contractId):    
    print 'hello, world new'
    t = threading.Timer(30.0, self.continousUpdate(contractId))
    t.start()

以某种方式表现得好像忽略了线程,并给出了递归限制错误

1 个答案:

答案 0 :(得分:12)

试试这个:

t = threading.Timer(30.0, self.continousUpdate, [contractId],{} )

当您阅读self.continuousUpdate时,即使您尚未调用该方法,该方法也已绑定到该对象。您无需再次传递self

第二个版本“忽略线程”的原因是你在Timer调用的参数内调用方法,因此它在Timer启动之前运行(并尝试再次调用自己)。这就是为什么线程函数可以单独传递函数及其参数(因此它可以在函数准备就绪时调用函数)。

顺便说一句,你拼错了“连续”错误。