Thanks Esteban!!. I got you point. But how to make the rule to run according to a condition, in a loop.
Also, how can we trigger the firing of one rule from another rule. Like when the Condition part of a rule satisfies then, in the Action part a particular rule is triggered and after that the control resumes to the previous rule, just as we do in nested if else statement. Thanks & Regards, Sumeet Karawal Mailto: [email protected] From: Esteban Aliverti <[email protected]> To: Rules Users List <[email protected]> Date: 04/19/2011 05:41 PM Subject: Re: [rules-users] How to use for loop in drools!!!! Sent by: [email protected] Drools is an inference engine and it let you express your knowledge using rules. A rule has 2 parts: CONDITION par and ACTION part. The CONDITION part is expressed in a drools' proprietary syntax, but in the ACTION part you can use plain java code. What you have described looks like an action that needs to be executed when certain constraints are meet. So, in your case, you can just write those lines in you action part. They should work fine. I recommend you to read the documentation: http://downloads.jboss.com/drools/docs/5.1.1.34858.FINAL/drools-expert/html_single/index.html Best Regards, XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Esteban Aliverti - Developer @ http://www.plugtree.com - Blog @ http://ilesteban.wordpress.com On Tue, Apr 19, 2011 at 3:13 AM, Sumeet Karawal <[email protected]> wrote: for(i = 0; i<10; i++) { c.setCustomerCount(c.getCustomerCount() + 1); } _______________________________________________ rules-users mailing list [email protected] https://lists.jboss.org/mailman/listinfo/rules-users =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you _______________________________________________ rules-users mailing list [email protected] https://lists.jboss.org/mailman/listinfo/rules-users
