Package turbogears :: Module scheduler :: Class MonthdayTask

Class MonthdayTask

source code

DayTaskRescheduler --+
                     |
              Task --+
                     |
                    MonthdayTask
Known Subclasses:

A task that is called at specific days in a month (1-31), at a fixed time on the day.

Instance Methods
 
__init__(self, name, monthdays, timeonday, action, args=None, kw=None)
This is an abstract class!
source code
 
execute(self)
Execute the actual task.
source code

Inherited from DayTaskRescheduler: get_schedule_time, reschedule

Inherited from Task: __call__, handle_exception

Method Details

__init__(self, name, monthdays, timeonday, action, args=None, kw=None)
(Constructor)

source code 

This is an abstract class!

Overrides: Task.__init__
(inherited documentation)

execute(self)

source code 

Execute the actual task.

Overrides: Task.execute
(inherited documentation)