public interface SearchableJobExecutionDao extends JobExecutionDao
Modifier and Type | Method and Description |
---|---|
int |
countJobExecutions() |
int |
countJobExecutions(String jobName) |
List<JobExecution> |
getJobExecutions(int start,
int count)
Get the
JobExecutions in reverse order of creation
(so normally of execution). |
List<JobExecution> |
getJobExecutions(String jobName,
int start,
int count)
Get the
JobExecutions for a specific job name in
reverse order of creation (so normally of execution). |
Collection<JobExecution> |
getRunningJobExecutions()
Find all the running executions (status less than STOPPING).
|
findJobExecutions, findRunningJobExecutions, getJobExecution, getLastJobExecution, saveJobExecution, synchronizeStatus, updateJobExecution
int countJobExecutions()
JobExecution
instancesList<JobExecution> getJobExecutions(String jobName, int start, int count)
JobExecutions
for a specific job name in
reverse order of creation (so normally of execution).jobName
- the name of the jobstart
- the start index of the instancescount
- the maximum number of instances to returnJobExecution
instances requestedList<JobExecution> getJobExecutions(int start, int count)
JobExecutions
in reverse order of creation
(so normally of execution).start
- the start index of the instancescount
- the maximum number of instances to returnJobExecution
instances requestedint countJobExecutions(String jobName)
jobName
- the name of a jobJobExecutions
belonging to
this jobCollection<JobExecution> getRunningJobExecutions()
JobExecution
instances that are currently runningCopyright © 2015. All rights reserved.