Re: [Twisted-Python] twisted.internet.task.LoopingCall

2009-06-04 Thread Lucas Taylor
On 6/4/09 4:12 PM, Doug Farrell wrote: > Hi all, > > I'm using the twisted.internet.task.LoopingCall system to run periodic > tasks in a Twisted server. If I had code like this: > > from twisted.internet.task import LoopingCall > > lp = LoopingCall(someFunction) > lp.start(5.0) # run every 5 s

Re: [Twisted-Python] twisted.internet.task.LoopingCall

2009-06-04 Thread Terry Jones
> "Doug" == Doug Farrell writes: Doug> Is there anything in LoopingCall to keep it from trying to run Doug> someFunction() if the previous call is still running? For instance a Doug> call to someFunction() takes longer than 5 seconds, will LoopingCall Doug> hold off or will it call someFuctio

[Twisted-Python] twisted.internet.task.LoopingCall

2009-06-04 Thread Doug Farrell
Hi all, I'm using the twisted.internet.task.LoopingCall system to run periodic tasks in a Twisted server. If I had code like this: from twisted.internet.task import LoopingCall lp = LoopingCall(someFunction) lp.start(5.0) # run every 5 seconds Is there anything in LoopingCall to keep it from