Interface DmnDecisionEvaluationEvent
-
- All Known Implementing Classes:
DmnDecisionEvaluationEventImpl
public interface DmnDecisionEvaluationEvent
Event which represents the evaluation of a decision
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DmnDecisionLogicEvaluationEvent
getDecisionResult()
long
getExecutedDecisionElements()
long
getExecutedDecisionInstances()
Collection<DmnDecisionLogicEvaluationEvent>
getRequiredDecisionResults()
-
-
-
Method Detail
-
getDecisionResult
DmnDecisionLogicEvaluationEvent getDecisionResult()
- Returns:
- the result of the evaluated decision
-
getRequiredDecisionResults
Collection<DmnDecisionLogicEvaluationEvent> getRequiredDecisionResults()
- Returns:
- the collection of required decision results
-
getExecutedDecisionInstances
long getExecutedDecisionInstances()
- Returns:
- the number of executed decision instances during the evaluation
-
getExecutedDecisionElements
long getExecutedDecisionElements()
- Returns:
- the number of executed decision elements during the evaluation
-
-