RuleEngine - Use more then one object within one decision table.
In your example from the ivy demos, you show how to apply an decision table.
/*
* We need to create a rule session to execute the rules.
*
* 'out.member' is the input object that stores the information of a member.
* This object will be modified during the rule execution.
*/
in.ruleBaseForDecisionTable.createSession().execute(out.member);
Ist Is it also possible, to use more the one object, for example:
in.ruleBaseForDecisionTable.createSession().execute(out.member1,out.member2,out.member3);
Or is that not provided?
regards, Stefan