Re: [rules-users] Drools Timers

2014-09-25 Thread Federico Bertola
Hi all, I've a big rule file that contains *many* rules like this: rule rule1 when $obj1: OBJ(a==false, b==C) $obj2: OBJ(b==B, a==false) then ... end Inspecting the RETE tree I've noticed that the first layer contains two alpha node, one for a==false and one for b==B, than the second

Re: [rules-users] Drools Timers

2014-09-24 Thread Mauricio Salatino
Hi Demian, As far as I remember you can use a CRON like expression in the timer definition which will allow you to do that exactly. On Wed, Sep 24, 2014 at 4:59 AM, Demian Calcaprina calcacue...@gmail.com wrote: Hey Guys, I am trying to use to use the timer in the rule, but I don't fully

[rules-users] Drools Timers

2014-09-23 Thread Demian Calcaprina
Hey Guys, I am trying to use to use the timer in the rule, but I don't fully understand it. I have a simple rule which says rule Test timer(int: 1s) when Something() then System.out.println(Something Happens); end And I insert 100 Someting() object, after 1 second I see