I want to make some function call in python but after some interval,<br>Like there are 30 functions and I want to call each function at specific time..<br><br>I have found this method - <a href="http://docs.python.org/release/2.5.2/lib/timer-objects.html">http://docs.python.org/release/2.5.2/lib/timer-objects.html</a><br>
Timer object from threading <br><br>I will use it, but 2 problem <br>1) How I can make sure about precision of timer ? I mean, If I say, execute after 30 second then it should execute after 30 second and not at 29 second.<br>
2) I want to pause also, so right now There is no pause method given, If I want to pause then I want to pause all 30 functions. I have done this thing in javascript. when I want to pause then I notedown the elapsed time and stop the timer, after that I un-pause the execute with the remaining interval of time. But in threading.Timer, I am unable to find any method to get elapsed timer. I thing I have to create external timer to pause facility. may be a wrapper of threading.timer which support timer pause functionality ...<br>
<br>Need your input..<br><br><br><br>-- <br>┌─────────────────────────┐<br>│    Narendra Sisodiya<br>│    <a href="http://narendrasisodiya.com">http://narendrasisodiya.com</a><br>└─────────────────────────┘<br>