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.
|
Modifier and Type | Method and Description |
---|---|
void |
ScheduledJobLoader.exec(JobEntry job,
String name)
Attempts to load and execute the external ScheduledJob.
|
abstract void |
ScheduledJob.run(JobEntry job)
Run the Jobentry from the scheduler queue.
|
Modifier and Type | Class and Description |
---|---|
class |
JobQueue<J extends JobEntry>
Queue for the scheduler.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractJobEntry
This class provides the basic implementation of common features for a scheduled job entry.
|
class |
BaseJobEntryTorque
This class was autogenerated by Torque on:
[Mon Mar 05 12:40:04 CET 2018]
You should not use this class directly.
|
class |
JobEntryNonPersistent
This is an implementation of a JobEntry with no persistence.
|
class |
JobEntryQuartz
This implements a Turbine scheduled job model for the
QuartzScheduler . |
class |
JobEntryTorque
The skeleton for this class was autogenerated by Torque on:
[Mon Mar 05 12:35:34 CET 2018]
You should add additional methods to this class to meet the
application requirements.
|
Modifier and Type | Field and Description |
---|---|
protected JobQueue<JobEntry> |
AbstractSchedulerService.scheduleQueue
The queue
|
Modifier and Type | Method and Description |
---|---|
JobEntry |
TurbineNonPersistentSchedulerService.getJob(int oid)
Deprecated.
This method returns the job element from the internal queue.
|
JobEntry |
TorqueSchedulerService.getJob(int oid)
Deprecated.
Get a specific Job from Storage.
|
JobEntry |
ScheduleService.getJob(int oid)
Get a specific Job from Storage.
|
JobEntry |
QuartzSchedulerService.getJob(int oid)
Get a specific Job from Storage.
|
abstract JobEntry |
AbstractSchedulerService.getJob(int oid)
Get a specific Job from Storage.
|
JobEntry |
SchedulerTool.getJob(String jobId)
Gets the job identified by the jobId.
|
JobEntry |
TurbineNonPersistentSchedulerService.newJob(int sec,
int min,
int hour,
int wd,
int day_mo,
String task)
Deprecated.
|
JobEntry |
TorqueSchedulerService.newJob(int sec,
int min,
int hour,
int wd,
int day_mo,
String task)
Deprecated.
|
JobEntry |
ScheduleService.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.
|
JobEntry |
QuartzSchedulerService.newJob(int sec,
int min,
int hour,
int wd,
int day_mo,
String task) |
abstract JobEntry |
AbstractSchedulerService.newJob(int sec,
int min,
int hour,
int wd,
int day_mo,
String task) |
protected JobEntry |
AbstractSchedulerService.nextJob()
Return the next Job to execute, or null if thread is interrupted.
|
Modifier and Type | Method and Description |
---|---|
List<? extends JobEntry> |
SchedulerTool.getScheduledJobs()
Gets the list of scheduled jobs.
|
List<? extends JobEntry> |
ScheduleService.listJobs()
List jobs in the queue.
|
List<? extends JobEntry> |
QuartzSchedulerService.listJobs()
List jobs in the queue.
|
List<JobEntry> |
AbstractSchedulerService.listJobs()
List jobs in the queue.
|
protected List<? extends JobEntry> |
TurbineNonPersistentSchedulerService.loadJobs()
Deprecated.
|
protected List<? extends JobEntry> |
TorqueSchedulerService.loadJobs()
Deprecated.
Load all jobs from configuration storage
|
protected abstract List<? extends JobEntry> |
AbstractSchedulerService.loadJobs()
Load all jobs from configuration storage
|
Modifier and Type | Method and Description |
---|---|
void |
ScheduleService.addJob(JobEntry je)
Add a new job to the queue.
|
void |
QuartzSchedulerService.addJob(JobEntry je)
Add a new job to the queue.
|
void |
AbstractSchedulerService.addJob(JobEntry je)
Add a new job to the queue.
|
int |
JobEntryQuartz.compareTo(JobEntry o) |
int |
AbstractJobEntry.compareTo(JobEntry je)
Used for ordering Jobentries
Note: this comparator imposes orderings that are inconsistent with
equals.
|
void |
TurbineNonPersistentSchedulerService.removeJob(JobEntry je)
Deprecated.
Remove a job from the queue.
|
void |
TorqueSchedulerService.removeJob(JobEntry je)
Deprecated.
Remove a job from the queue.
|
void |
ScheduleService.removeJob(JobEntry je)
Remove a job from the queue.
|
void |
QuartzSchedulerService.removeJob(JobEntry je)
Remove a job from the queue.
|
abstract void |
AbstractSchedulerService.removeJob(JobEntry je)
Remove a job from the queue.
|
void |
TurbineNonPersistentSchedulerService.updateJob(JobEntry je)
Deprecated.
Add/update a job
|
void |
TorqueSchedulerService.updateJob(JobEntry je)
Deprecated.
Add or update a job.
|
void |
ScheduleService.updateJob(JobEntry je)
Modify a Job.
|
void |
QuartzSchedulerService.updateJob(JobEntry je)
Add or update a job.
|
abstract void |
AbstractSchedulerService.updateJob(JobEntry je)
Add or update a job.
|
Constructor and Description |
---|
WorkerThread(JobEntry je)
Creates a new worker to run the specified
JobEntry . |
Copyright © 2000–2018 The Apache Software Foundation. All rights reserved.