The Scheduler itself.
|
|
|
|
|
add_interval_task(self,
action,
taskname,
initialdelay,
interval,
processmethod,
args,
kw)
Add a new Interval Task to the schedule. |
source code
|
|
|
|
add_daytime_task(self,
action,
taskname,
weekdays,
monthdays,
timeonday,
processmethod,
args,
kw)
Add a new Day Task (Weekday or Monthday) to the schedule. |
source code
|
|
|
|
schedule_task(self,
task,
delay)
Low-level method to add a new task to the scheduler with the given
delay (seconds). |
source code
|
|
|
|
schedule_task_abs(self,
task,
abstime)
Low-level method to add a new task to the scheduler for the given
absolute time value. |
source code
|
|
|
|
|
|
|
stop(self)
Remove all pending tasks and stop the Scheduler. |
source code
|
|
|
|
|