Interface StatelessKieSession
- All Superinterfaces:
CommandExecutor,KieRuntimeEventManager,ProcessEventManager,RuleRuntimeEventManager,RuntimeSession,StatelessProcessSession,StatelessRuleSession
Simple example showing a stateless session executing for a given collection of java objects using the convenience api. It will iterate the collection inserting each element in turn
KieServices kieServices = KieServices.Factory.get(); KieContainer kContainer = kieServices.getKieClasspathContainer(); StatelessKieSession kSession = kContainer.newStatelessKieSession(); kSession.execute( collection );
If this was done as a single Command it would be as follows:
KieCommands kieCommands = kieServices.getCommands(); kSession.execute( kieCommands.newInsertElements( collection ) );
Note if you wanted to insert the collection itself, and not the iterate and insert the elements, then kieCommands.newInsert( collection ) would do the job.
The KieCommands interface details the supported commands, all of which can be marshalled using XStream and the BatchExecutionHelper. BatchExecutionHelper provides details on the XML format as well as how to use Drools Pipeline to automate the marshalling of BatchExecution and ExecutionResults.
StatelessKieSession support globals, scoped in a number of ways. I'll cover the non-command way first, as commands are scoped to a specific execution call. Globals can be resolved in three ways. The StatelessKieSession supports getGlobals(), which returns a Globals instance. These globals are shared for ALL execution calls, so be especially careful of mutable globals in these cases - as often execution calls can be executing simultaneously in different threads. Globals also supports a delegate, which adds a second way of resolving globals. Calling of setGlobal(String, Object) will actually be set on an internal Collection, identifiers in this internal Collection will have priority over supplied delegate, if one is added. If an identifier cannot be found in the internal Collection, it will then check the delegate Globals, if one has been set.
Code snippet for setting a session scoped global:
StatelessKieSession kSession = kContainer.newStatelessKieSession(); kSession.setGlobal( "hbnSession", hibernateSession ); // sets a global hibernate session, that can be used for DB interactions in the rules. kSession.execute( collection ); // this will now execute and will be able to resolve the "hbnSession" identifier.
The third way is execution scopped globals using the CommandExecutor and SetGlobal Commands:
List<Command> cmds = new ArrayList<Command>(); cmds.add( kieCommands.newSetGlobal( "list1", new ArrayList() ) ); cmds.add( kieCommands.newInsert( new Person( "jon", 102 ) ) ); kSession.execute( kieCommands.newBatchExecution( cmds ) );
The CommandExecutor interface also supports the ability to export data via "out" parameters. Inserted facts, globals and query results can all be returned.
List<Command> cmds = new ArrayList<Command>(); cmds.add( kieCommands.newSetGlobal( "list1", new ArrayList(), true ) ); cmds.add( kieCommands.newInsert( new Person( "jon", 102 ), "person" ) ); cmds.add( kieCommands.newQuery( "Get People" "getPeople" ); ExecutionResults results = ksession.execute( kieCommands.newBatchExecution( cmds ) ); results.getValue( "list1" ); // returns the ArrayList results.getValue( "person" ); // returns the inserted fact Person results.getValue( "Get People" );// returns the query as a QueryResults instance.
-
Method Summary
Methods inherited from interface org.kie.api.runtime.CommandExecutor
executeMethods inherited from interface org.kie.api.event.KieRuntimeEventManager
getLoggerMethods inherited from interface org.kie.api.event.process.ProcessEventManager
addEventListener, getProcessEventListeners, removeEventListenerMethods inherited from interface org.kie.api.event.rule.RuleRuntimeEventManager
addEventListener, addEventListener, getAgendaEventListeners, getRuleRuntimeEventListeners, removeEventListener, removeEventListenerMethods inherited from interface org.kie.api.runtime.RuntimeSession
getChannels, getGlobals, getKieBase, registerChannel, setGlobal, unregisterChannelMethods inherited from interface org.kie.api.runtime.rule.StatelessRuleSession
execute, execute