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 100 activations.
- Can I do with the timer something like "run this rule once per minute" for example?
- When does the timer start to run? 

Thanks in advance,

Demian