Package org.camunda.bpm.engine.history
Interface DurationReportResult
-
- All Superinterfaces:
ReportResult
- All Known Implementing Classes:
DurationReportResultEntity
public interface DurationReportResult extends ReportResult
Represents a report result about duration of completed instances for a given period.
The result must be interpreted in conjunction with the executed report.
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getAverage()
Returns the average duration of all completed instances, which have been started in the given period.long
getMaximum()
Returns the greatest duration of all completed instances, which have been started in the given period.long
getMinimum()
Returns the smallest duration of all completed instances, which have been started in the given period.-
Methods inherited from interface org.camunda.bpm.engine.history.ReportResult
getPeriod, getPeriodUnit
-
-
-
-
Method Detail
-
getMinimum
long getMinimum()
Returns the smallest duration of all completed instances, which have been started in the given period.
-
getMaximum
long getMaximum()
Returns the greatest duration of all completed instances, which have been started in the given period.
-
getAverage
long getAverage()
Returns the average duration of all completed instances, which have been started in the given period.
-
-