Uses of Interface
org.apache.turbine.services.schedule.JobEntry
- 
Packages that use JobEntry Package Description org.apache.turbine.modules Modules (Action, Screen, Layout, Navigation, Page) classes for the Turbine view.org.apache.turbine.services.schedule The scheduler service can run tasks in the background.
- 
- 
Uses of JobEntry in org.apache.turbine.modulesMethods in org.apache.turbine.modules with parameters of type JobEntry Modifier and Type Method Description voidScheduledJobLoader. exec(JobEntry job, String name)Attempts to load and execute the external ScheduledJob.voidScheduledJob. run(JobEntry job)Run the Jobentry from the scheduler queue.
- 
Uses of JobEntry in org.apache.turbine.services.scheduleClasses in org.apache.turbine.services.schedule with type parameters of type JobEntry Modifier and Type Class Description classJobQueue<J extends JobEntry>Queue for the scheduler.Classes in org.apache.turbine.services.schedule that implement JobEntry Modifier and Type Class Description classAbstractJobEntryThis class provides the basic implementation of common features for a scheduled job entry.classBaseJobEntryTorqueThis class was autogenerated by Torque on: [Tue Dec 14 09:51:09 CET 2021] You should not use this class directly.classJobEntryNonPersistentThis is an implementation of a JobEntry with no persistence.classJobEntryQuartzThis implements a Turbine scheduled job model for theQuartzScheduler.classJobEntryTorqueThe skeleton for this class was autogenerated by Torque on: [Tue Dec 14 09:49:30 CET 2021] You should add additional methods to this class to meet the application requirements.Fields in org.apache.turbine.services.schedule with type parameters of type JobEntry Modifier and Type Field Description protected JobQueue<JobEntry>AbstractSchedulerService. scheduleQueueThe queueMethods in org.apache.turbine.services.schedule that return JobEntry Modifier and Type Method Description abstract JobEntryAbstractSchedulerService. getJob(int oid)Get a specific Job from Storage.JobEntryQuartzSchedulerService. getJob(int oid)Get a specific Job from Storage.JobEntrySchedulerTool. getJob(String jobId)Gets the job identified by the jobId.JobEntryScheduleService. getJob(int oid)Get a specific Job from Storage.JobEntryTorqueSchedulerService. getJob(int oid)Deprecated.Get a specific Job from Storage.JobEntryTurbineNonPersistentSchedulerService. getJob(int oid)Deprecated.This method returns the job element from the internal queue.abstract JobEntryAbstractSchedulerService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)JobEntryQuartzSchedulerService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)JobEntryScheduleService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)Factory method for a new Job Schedule a job to run on a certain point of time.
 Example 1: Run the DefaultScheduledJob at 8:00am every 15th of the month -
 JobEntry je = newJob(0,0,8,-1,15,"DefaultScheduledJob");
 Example 2: Run the DefaultScheduledJob at 8:00am every day -
 JobEntry je = newJob(0,0,8,-1,-1,"DefaultScheduledJob");
 Example 3: Run the DefaultScheduledJob every 2 hours. -
 JobEntry je = newJob(0,120,-1,-1,-1,"DefaultScheduledJob");
 Example 4: Run the DefaultScheduledJob every 30 seconds. -
 JobEntry je = newJob(30,-1,-1,-1,-1,"DefaultScheduledJob");JobEntryTorqueSchedulerService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)Deprecated.JobEntryTurbineNonPersistentSchedulerService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)Deprecated.protected JobEntryAbstractSchedulerService. nextJob()Return the next Job to execute, or null if thread is interrupted.Methods in org.apache.turbine.services.schedule that return types with arguments of type JobEntry Modifier and Type Method Description List<? extends JobEntry>SchedulerTool. getScheduledJobs()Gets the list of scheduled jobs.List<JobEntry>AbstractSchedulerService. listJobs()List jobs in the queue.List<? extends JobEntry>QuartzSchedulerService. listJobs()List jobs in the queue.List<? extends JobEntry>ScheduleService. listJobs()List jobs in the queue.protected abstract List<? extends JobEntry>AbstractSchedulerService. loadJobs()Load all jobs from configuration storageprotected List<? extends JobEntry>TorqueSchedulerService. loadJobs()Deprecated.Load all jobs from configuration storageprotected List<? extends JobEntry>TurbineNonPersistentSchedulerService. loadJobs()Deprecated.Methods in org.apache.turbine.services.schedule with parameters of type JobEntry Modifier and Type Method Description voidAbstractSchedulerService. addJob(JobEntry je)Add a new job to the queue.voidQuartzSchedulerService. addJob(JobEntry je)Add a new job to the queue.voidScheduleService. addJob(JobEntry je)Add a new job to the queue.intAbstractJobEntry. compareTo(JobEntry je)Used for ordering Jobentries Note: this comparator imposes orderings that are inconsistent with equals.intJobEntryQuartz. compareTo(JobEntry o)abstract voidAbstractSchedulerService. removeJob(JobEntry je)Remove a job from the queue.voidQuartzSchedulerService. removeJob(JobEntry je)Remove a job from the queue.voidScheduleService. removeJob(JobEntry je)Remove a job from the queue.voidTorqueSchedulerService. removeJob(JobEntry je)Deprecated.Remove a job from the queue.voidTurbineNonPersistentSchedulerService. removeJob(JobEntry je)Deprecated.Remove a job from the queue.abstract voidAbstractSchedulerService. updateJob(JobEntry je)Add or update a job.voidQuartzSchedulerService. updateJob(JobEntry je)Add or update a job.voidScheduleService. updateJob(JobEntry je)Modify a Job.voidTorqueSchedulerService. updateJob(JobEntry je)Deprecated.Add or update a job.voidTurbineNonPersistentSchedulerService. updateJob(JobEntry je)Deprecated.Add/update a jobConstructors in org.apache.turbine.services.schedule with parameters of type JobEntry Constructor Description WorkerThread(JobEntry je)Creates a new worker to run the specifiedJobEntry.
 
-