org.apache.jetspeed.scheduler |
|
Java Source File Name | Type | Comment |
AbstractScheduler.java | Class | Service for a cron like scheduler. |
BaseJobEntry.java | Class | |
JobEntry.java | Class | This is a wrapper for a scheduled job. |
JobQueue.java | Class | Queue for the scheduler. |
MemoryBasedScheduler.java | Class | Service for a cron like scheduler that uses the
properties file instead of the database.
The methods that operate on jobs ( get,add,update,remove )
only operate on the queue in memory and changes are not reflected
to the properties file which was used to initilize the jobs.
An example is given below. |
ScheduledJob.java | Class | All Scheduled jobs should extend this. |
Scheduler.java | Interface | ScheduleService interface. |
WorkerThread.java | Class | Wrapper for a JobEntry to actually perform the job's action. |