repeat calls function immediately without waiting for timer
This commit is contained in:
parent
5bdc7605e5
commit
91076a92e4
1 changed files with 24 additions and 21 deletions
|
|
@ -1,27 +1,28 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
"""
|
# Copyright(C) 2010 Romain Bignon, Christophe Benz
|
||||||
Copyright(C) 2010 Romain Bignon
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, version 3 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, version 3 of the License.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
import logging
|
||||||
from threading import Timer, Event
|
from threading import Timer, Event
|
||||||
|
|
||||||
|
|
||||||
__all__ = ['Scheduler']
|
__all__ = ['Scheduler']
|
||||||
|
|
||||||
|
|
||||||
class IScheduler(object):
|
class IScheduler(object):
|
||||||
def schedule(self, interval, function, *args):
|
def schedule(self, interval, function, *args):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
@ -43,12 +44,14 @@ class Scheduler(IScheduler):
|
||||||
|
|
||||||
def schedule(self, interval, function, *args):
|
def schedule(self, interval, function, *args):
|
||||||
self.count += 1
|
self.count += 1
|
||||||
|
logging.debug('function "%s" will be called in %s seconds' % (function.__name__, interval))
|
||||||
timer = Timer(interval, function, args)
|
timer = Timer(interval, function, args)
|
||||||
timer.start()
|
timer.start()
|
||||||
self.queue[self.count] = timer
|
self.queue[self.count] = timer
|
||||||
return self.count
|
return self.count
|
||||||
|
|
||||||
def repeat(self, interval, function, *args):
|
def repeat(self, interval, function, *args):
|
||||||
|
function(*args)
|
||||||
return self.schedule(interval, self._repeated_cb, interval, function, args)
|
return self.schedule(interval, self._repeated_cb, interval, function, args)
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
|
|
@ -58,6 +61,6 @@ class Scheduler(IScheduler):
|
||||||
def want_stop(self):
|
def want_stop(self):
|
||||||
self.stop_event.set()
|
self.stop_event.set()
|
||||||
|
|
||||||
def _repeated_cb(self, interval, func, args):
|
def _repeated_cb(self, interval, function, args):
|
||||||
func(*args)
|
function(*args)
|
||||||
self.repeat(interval, func, *args)
|
self.repeat(interval, function, *args)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue