|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface SearchableJobExecutionDao
| Method Summary | |
|---|---|
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). |
| Methods inherited from interface org.springframework.batch.core.repository.dao.JobExecutionDao |
|---|
findJobExecutions, findRunningJobExecutions, getJobExecution, getLastJobExecution, saveJobExecution, synchronizeStatus, updateJobExecution |
| Method Detail |
|---|
int countJobExecutions()
JobExecution instances
List<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 return
JobExecution instances requested
List<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 return
JobExecution instances requestedint countJobExecutions(String jobName)
jobName - the name of a job
JobExecutions belonging to
this jobCollection<JobExecution> getRunningJobExecutions()
JobExecution instances that are currently running
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||