Package org.camunda.bpm.engine.history
Interface DurationReportResult
- All Superinterfaces:
ReportResult
- All Known Implementing Classes:
DurationReportResultEntity
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
Modifier and TypeMethodDescriptionlong
Returns the average duration of all completed instances, which have been started in the given period.long
Returns the greatest duration of all completed instances, which have been started in the given period.long
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 Details
-
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.
-