Package org.camunda.bpm.dmn.engine.spi
Interface DmnEngineMetricCollector
- All Superinterfaces:
DmnDecisionTableEvaluationListener
- All Known Implementing Classes:
DefaultEngineMetricCollector
,DmnEngineMetricCollectorWrapper
DMN engine metric collector which records the executed decision elements
since since its creation.
-
Method Summary
Modifier and TypeMethodDescriptionlong
Resets the executed decision elements to 0.long
Resets the executed decision instances to 0.long
long
Methods inherited from interface org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationListener
notify
-
Method Details
-
getExecutedDecisionInstances
long getExecutedDecisionInstances()- Returns:
- the number of executed decision instances since creation of this engine
-
getExecutedDecisionElements
long getExecutedDecisionElements()- Returns:
- the number of executed decision elements since creation of this engine
-
clearExecutedDecisionElements
long clearExecutedDecisionElements()Resets the executed decision elements to 0.- Returns:
- the number of executed decision elements before resetting.
-
clearExecutedDecisionInstances
long clearExecutedDecisionInstances()Resets the executed decision instances to 0.- Returns:
- the number of executed decision elements before resetting.
-