Interface CleanupHistoryRecord
-
public interface CleanupHistoryRecord
Represents single record of cleanup.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Date
getFinishTime()
The time of the cleanup finish.Long
getId()
The id of the record in the DB (the sequential number of the cleanup run).InterruptReason
getInterruptReason()
The reason of the cleanup finish.Date
getStartTime()
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,
null
otherwise
-
getInterruptReason
@Nullable InterruptReason getInterruptReason()
The reason of the cleanup finish.- Returns:
InterruptReason
if the cleanup was interrupted,null
otherwise- See Also:
InterruptReason
-
-