The Scheduler itself.
|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
add_interval_task(self,
action,
taskname,
initialdelay,
interval,
processmethod,
args,
kw)
Add a new Interval Task to the schedule. |
source code
|
|
|
add_single_task(self,
action,
taskname,
initialdelay,
processmethod,
args,
kw)
Add a new task to the scheduler that will only be executed once. |
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
|
|
|
add_cron_like_task(self,
action,
taskname,
cron_str,
processmethod,
args,
kw)
Add a new Cron-like Task to the schedule. |
source code
|
|
|
|
|
|
|
|
|
stop(self)
Remove all pending tasks and stop the scheduler. |
source code
|
|
|
cancel(self,
task)
Cancel given scheduled task. |
source code
|
|
|
rename(self,
taskname,
newname)
Rename a scheduled task. |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|