Damn, I can't!
Simple rule
rule "TEST"
dialect "mvel"
when
s : String()
then
System.out.println(s);
end
Java Test
StatefulKnowledgeSession s = ...
s.insert("ONE");
s.insert("TWO");
s.fireAllRules();
s.dispose();
Output
TWO
What the...???
Using v5.4.0.Final
--
View this message in context:
http://drools.46999.n3.nabble.com/Evaluate-rules-for-multiple-facts-of-th...
Sent from the Drools: User forum mailing list archive at
Nabble.com.