Rule Complete

Hello,
Is there a way to know/track if a rule was fully executed. I am looking for a action like:
Wait_for_Rule_to_Complete(rule_name)
Thank you

There are probably some easier ways, but I did it by using a Global Variable.

First rule will set Global Variable to TRUE when it fires. And FALSE when it is completed.
Second rule will wait for variable to become FALSE.

Pietsnot, thanks for the suggestion. Let me try...