Interface CleanupHistoryRecord
-
public interface CleanupHistoryRecordRepresents single record of cleanup.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetFinishTime()The time of the cleanup finish.LonggetId()The id of the record in the DB (the sequential number of the cleanup run).InterruptReasongetInterruptReason()The reason of the cleanup finish.DategetStartTime()The time of the cleanup start.
-
-
-
Method Detail
-
getId
@NotNull Long getId()
The id of the record in the DB (the sequential number of the cleanup run).
-
getStartTime
@NotNull Date getStartTime()
The time of the cleanup start.
-
getFinishTime
@Nullable Date getFinishTime()
The time of the cleanup finish.- Returns:
- finish time, if the cleanup was finished,
nullotherwise
-
getInterruptReason
@Nullable InterruptReason getInterruptReason()
The reason of the cleanup finish.- Returns:
InterruptReasonif the cleanup was interrupted,nullotherwise- See Also:
InterruptReason
-
-