Interface ExecutionHistory
-
public interface ExecutionHistory
Holds information about last executions of aTaskExecution
.- Since:
- taskplanner 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<? extends HistoryEntry>
getLastExecutions()
Returns the lastExecutions.
-
-
-
Method Detail
-
getLastExecutions
java.util.List<? extends HistoryEntry> getLastExecutions()
Returns the lastExecutions. Newer execution are added to the end of this list, so the first execution is the first item in this list.
NOTE: The returned list is immutable.- Returns:
- the last Executions
- Since:
- taskplanner 3.0
-
-