Package org.camunda.bpm.engine.history
Interface CleanableHistoricBatchReportResult
-
- All Known Implementing Classes:
CleanableHistoricBatchesReportResultEntity
public interface CleanableHistoricBatchReportResultThis interface defines the result of Cleanable historic batch report.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBatchType()Returns the batch type.longgetCleanableBatchesCount()Returns the amount of cleanable historic batches.longgetFinishedBatchesCount()Returns the amount of finished historic batches.java.lang.IntegergetHistoryTimeToLive()Returns the history time to live for the selected batch type.
-
-
-
Method Detail
-
getBatchType
java.lang.String getBatchType()
Returns the batch type.
-
getHistoryTimeToLive
java.lang.Integer getHistoryTimeToLive()
Returns the history time to live for the selected batch type.
-
getFinishedBatchesCount
long getFinishedBatchesCount()
Returns the amount of finished historic batches.
-
getCleanableBatchesCount
long getCleanableBatchesCount()
Returns the amount of cleanable historic batches.
-
-