Package org.camunda.bpm.engine.history
Interface HistoricActivityStatistics
-
- All Known Implementing Classes:
HistoricActivityStatisticsImpl
public interface HistoricActivityStatistics
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCanceled()
The number of all canceled instances of the activity.long
getCompleteScope()
The number of all instances, which complete a scope (ie.long
getDeletedIncidents()
The number of deleted incidents of the activity.long
getFinished()
The number of all finished instances of the activity.String
getId()
The activity id.long
getInstances()
The number of all running instances of the activity.long
getOpenIncidents()
The number of open incidents of the activity.long
getResolvedIncidents()
The number of resolved incidents of the activity.
-
-
-
Method Detail
-
getId
String getId()
The activity id.
-
getInstances
long getInstances()
The number of all running instances of the activity.
-
getFinished
long getFinished()
The number of all finished instances of the activity.
-
getCanceled
long getCanceled()
The number of all canceled instances of the activity.
-
getCompleteScope
long getCompleteScope()
The number of all instances, which complete a scope (ie. in bpmn manner: an activity which consumed a token and did not produced a new one), of the activity.
-
getOpenIncidents
long getOpenIncidents()
The number of open incidents of the activity.
-
getResolvedIncidents
long getResolvedIncidents()
The number of resolved incidents of the activity.
-
getDeletedIncidents
long getDeletedIncidents()
The number of deleted incidents of the activity.
-
-