Package turbogears :: Module scheduler :: Class ForkedScheduler

Class ForkedScheduler

source code

object --+    
         |    
 Scheduler --+
             |
            ForkedScheduler

A Scheduler that runs in its own forked process.

Instance Methods
 
__del__(self) source code
 
start(self)
Fork off a new process in which the scheduler will run.
source code
 
stop(self)
Stop the scheduler and wait for the process to finish.
source code
 
signalhandler(self, sig, stack) source code

Inherited from Scheduler: __init__, add_cron_like_task, add_daytime_task, add_interval_task, add_single_task, cancel, rename, schedule_task, schedule_task_abs

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

start(self)

source code 

Fork off a new process in which the scheduler will run.

Overrides: Scheduler.start

stop(self)

source code 

Stop the scheduler and wait for the process to finish.

Overrides: Scheduler.stop