Brian,

I'm guessing that you mean the RuleAgent Class. The Javadoc on this class gives more info.

Code sample (assuming that you have the BRMS setup as per the doc). You'll need to change to whatever settings are appropriate for your BRMS.

           Properties prop = new Properties();
           prop.setProperty("url",uri);
           prop.setProperty("newInstance", "true");
           prop.setProperty("localCacheDir", ".");
prop.setProperty("poll", "300"); // poll every 300 seconds for hot deployment. //Get a new RuleBase using these properties
           RuleAgent agent = RuleAgent.newRuleAgent(prop);
           RuleBase rb = agent.getRuleBase();

Then use the RuleBase as normal

Paul

Brian Trezise wrote:

In the What's New? Section of the Drools 4.0 documentation there is a reference in 1.1.2 to a "Rules Engine Agent for hot deployment and BRMS integration". This would be ideal for the application I am currently developing. However, this is the only mention of this agent anywhere in the documentation. Does anybody know anything about this, how to use it, any documentation about it?

Thanks,

*___________________________________________________
Brian Trezise
Staff Software Engineer
IntelliData, Inc
*3173 s. uravan way
aurora, colorado 80013
T: 720.524.4864
[EMAIL PROTECTED]

------------------------------------------------------------------------

_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users

_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users

Reply via email to