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
> "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
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