How do I set a global in Drools 4 from within a rule? I want to set a boolean if a rule fires so that it can read it from another rule with a lower salience.

link|improve this question

feedback

3 Answers

Assuming you're using Drools 5.x, you can do this in your rule consequence:

kcontext.getKnowledgeRuntime().setGlobal(name, value);

link|improve this answer
Sorry I forgot to mention it is Drools 4 – Tarski Dec 1 '09 at 9:43
feedback

You might be able to do something like:

drools.getWorkingMemory().setGlobal... (similar to above, what kris said).

link|improve this answer
feedback

I wouldn't use a global here. You are inferring a new fact from other facts, you can just 'insert' the new fact and have the other rule fire on that.

rule "some rule"
when
    //…
then
    insert(new MyNewFact())
end

There's no guarantee that Drools will re-evaluate your rules in response to the insertion of a (new) global and your other rule might not fire. It will, however, re-evaluate in response to facts being inserted (or retracted, or modified).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.