Re: Continuous Timer

2008-06-03 Thread Robert Dailey
I just need a repeating timer, I could care less about microsecond accuracies. On Tue, Jun 3, 2008 at 11:19 AM, John Nagle <[EMAIL PROTECTED]> wrote: > Gabriel Genellina wrote: > >> En Fri, 30 May 2008 22:50:13 -0300, Robert Dailey <[EMAIL PROTECTED]> >> escribió: >> >> Reading through the Pytho

Re: Continuous Timer

2008-06-03 Thread John Nagle
Gabriel Genellina wrote: En Fri, 30 May 2008 22:50:13 -0300, Robert Dailey <[EMAIL PROTECTED]> escribió: Reading through the Python 2.5 docs, I'm seeing a Timer class in the threading module, however I cannot find a timer object that will continuously call a function of my choice every am

Re: Continuous Timer

2008-06-02 Thread Gabriel Genellina
En Fri, 30 May 2008 22:50:13 -0300, Robert Dailey <[EMAIL PROTECTED]> escribió: Reading through the Python 2.5 docs, I'm seeing a Timer class in the threading module, however I cannot find a timer object that will continuously call a function of my choice every amount of milliseconds.

Continuous Timer

2008-05-30 Thread Robert Dailey
Hi, Reading through the Python 2.5 docs, I'm seeing a Timer class in the threading module, however I cannot find a timer object that will continuously call a function of my choice every amount of milliseconds. For example, every 1000 milliseconds I want a function named Foo to be called. This