Interface ScheduleEntryState
- All Superinterfaces:
LogfileProvider
Interface representing a schedule entry execution state.
- Since:
- 4.0
-
Method Summary
Modifier and TypeMethodDescriptionThe date execution of thisScheduleEntryhas been finished.longgetId()Returns the execution id.The date execution of thisScheduleEntryhas been started.getState()The execution state of thisScheduleEntry.A list ofTaskResultwhich describes the state of each task depending on thisScheduleEntry.Methods inherited from interface de.espirit.firstspirit.access.schedule.LogfileProvider
getLogfile, getLogfileSize
-
Method Details
-
getId
long getId()Returns the execution id.- Returns:
- The execution id.
- Since:
- 4.0
-
getStartTime
Date getStartTime()The date execution of thisScheduleEntryhas been started.- Returns:
- The date execution of this
ScheduleEntryhas been started. - Since:
- 4.0
-
getFinishTime
Date getFinishTime()The date execution of thisScheduleEntryhas been finished.- Returns:
- The date execution of this
ScheduleEntryhas been finished. - Since:
- 4.0
-
getTaskResults
List<TaskResult> getTaskResults()A list ofTaskResultwhich describes the state of each task depending on thisScheduleEntry.- Returns:
- A list of
TaskResultwhich describes the state of each task depending on thisScheduleEntry. - Since:
- 4.0
-
getState
RunState getState()The execution state of thisScheduleEntry.- Returns:
- The execution state of this
ScheduleEntry. - Since:
- 4.0
-