Interface CleanupHistoryRecord


  • public interface CleanupHistoryRecord
    Represents single record of cleanup.
    • 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