|
||||||||||
| 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(java.lang.String jobName)
|
java.util.List<org.springframework.batch.core.JobExecution> |
getJobExecutions(int start,
int count)
Get the JobExecutions in reverse order of creation
(so normally of execution). |
java.util.List<org.springframework.batch.core.JobExecution> |
getJobExecutions(java.lang.String jobName,
int start,
int count)
Get the JobExecutions for a specific job name in
reverse order of creation (so normally of execution). |
java.util.Collection<org.springframework.batch.core.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
java.util.List<org.springframework.batch.core.JobExecution> getJobExecutions(java.lang.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
java.util.List<org.springframework.batch.core.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(java.lang.String jobName)
jobName - the name of a job
JobExecutions belonging to
this jobjava.util.Collection<org.springframework.batch.core.JobExecution> getRunningJobExecutions()
JobExecution instances that are currently running
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||