I've got a drools 2.5 based project which, for lack of a better explanation,
builds a story during rules evaluation (more or less a log of what happened
during rules firing, but in a end user readable format).
In investigating upgrading to 3.0, however, I see that the event mechanism has
changed, but I don't see how I can easily change from, for example, the
WorkingMemoryEventListener.conditionTested() to whatever it is supposed to be
in 3.0 (i.e. some sort of activation event?).
In my story builder I can use the conditionTested() method to identify what
condition was tested, what the result of the condition testing was, etc., and
use that information when constructing the story result.
But how do I get similar type of notification from 3.0?
Can anyone provide some pointers as to how I should go about this conversion?