-
Feature Request
-
Resolution: Won't Fix
-
L3 - Default
-
None
-
7.8.x
-
None
I just learned that the variableContext is a great way to lazily get the required input data for dmn evaluation, see https://github.com/holunda-io/holunda-spike/tree/master/lazy-dmn-evaluation
But with the current API of the dmnService evaluation, I am required to loop over the keySet of a custom variableContext to create a VariableMap before I can evaluate a decision table.
It would be great if I could just pass the variable context like this:
decisionService.evaluateDecisionTableByKey("key").variables(variableContext).evaluate()