| java.lang.Object com.jcorporate.expresso.services.crontab.CronDaemon
CronDaemon | public class CronDaemon implements Runnable(Code) | | This class provides the thread for listening on various crontabs. It notifies
the crontab when it's time to notify a listener.
author: Mike Dubman version: 1.0 |
Method Summary | |
public synchronized void | restart(long sleepUntil) | public synchronized void | run() | public synchronized void | stop() | public synchronized void | update(long sleepUntil) |
restart | public synchronized void restart(long sleepUntil)(Code) | | Restarts the cron daemon
Parameters: sleepUntil - the absolute time to sleep until |
run | public synchronized void run()(Code) | | |
stop | public synchronized void stop()(Code) | | Stops the thread
|
update | public synchronized void update(long sleepUntil)(Code) | | Updates the time it should sleep until
Parameters: sleepUntil - absolute system time to sleep until |
|
|