|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jbpm.process.StatefulProcessSession
public class StatefulProcessSession
Field Summary | |
---|---|
protected Queue<org.drools.common.WorkingMemoryAction> |
actionQueue
|
Constructor Summary | |
---|---|
StatefulProcessSession(KnowledgeBase kbase,
KnowledgeSessionConfiguration sessionConfiguration,
Environment environment)
|
Method Summary | ||
---|---|---|
void |
abortProcessInstance(long processInstanceId)
Aborts the process instance with the given id. |
|
void |
addEventListener(AgendaEventListener listener)
Add an event listener. |
|
void |
addEventListener(ProcessEventListener listener)
Add a process event listener. |
|
void |
addEventListener(WorkingMemoryEventListener listener)
Add an event listener. |
|
ProcessInstance |
createProcessInstance(String processId,
Map<String,Object> parameters)
Creates a new process instance (but does not yet start it). |
|
void |
dispose()
Releases all the current session resources, setting up the session for garbage collection. |
|
void |
endOperation()
|
|
|
execute(Command<T> command)
Execute the command and return a ExecutionResults for the results of the Command. |
|
void |
executeQueuedActions()
|
|
int |
fireAllRules()
Fire all Activations on the Agenda. |
|
int |
fireAllRules(AgendaFilter agendaFilter)
Fire all Activations on the Agenda |
|
int |
fireAllRules(AgendaFilter agendaFilter,
int i)
Fire all Activations on the Agenda |
|
int |
fireAllRules(int max)
Fire Activations on the Agenda up to the given maximum number of activations, before returning the control to the application. |
|
void |
fireUntilHalt()
Keeps firing activations until a halt is called. |
|
void |
fireUntilHalt(AgendaFilter agendaFilter)
Keeps firing activations until a halt is called. |
|
Queue<org.drools.common.WorkingMemoryAction> |
getActionQueue()
|
|
Agenda |
getAgenda()
Returns a reference to this session's Agenda . |
|
Collection<AgendaEventListener> |
getAgendaEventListeners()
Returns all event listeners. |
|
Calendars |
getCalendars()
|
|
Map<String,Channel> |
getChannels()
|
|
String |
getEntryPointId()
Returns the String Id of this entry point |
|
Environment |
getEnvironment()
|
|
long |
getFactCount()
Returns the total number of facts currently in this entry point |
|
FactHandle |
getFactHandle(Object object)
Returns the fact handle associated with the given object. |
|
|
getFactHandles()
Returns all FactHandle s from the current session. |
|
|
getFactHandles(ObjectFilter filter)
Returns all FactHandle s from the current session for which the facts are accepted by
the given filter. |
|
Object |
getGlobal(String identifier)
|
|
Globals |
getGlobals()
|
|
int |
getId()
|
|
KnowledgeBase |
getKnowledgeBase()
Returns the KnowledgeBase reference from which this stateful session was created. |
|
long |
getLastIdleTimestamp()
|
|
Object |
getObject(FactHandle factHandle)
Returns the object associated with the given FactHandle. |
|
Collection<Object> |
getObjects()
Returns all facts from the current session as a Collection. |
|
Collection<Object> |
getObjects(ObjectFilter filter)
Returns all facts from the current session that are accepted by the given ObjectFilter . |
|
Collection<ProcessEventListener> |
getProcessEventListeners()
Returns all event listeners. |
|
ProcessInstance |
getProcessInstance(long processInstanceId)
Returns the process instance with the given id. |
|
Collection<ProcessInstance> |
getProcessInstances()
Returns a collection of currently active process instances. |
|
InternalProcessRuntime |
getProcessRuntime()
|
|
QueryResults |
getQueryResults(String query,
Object... arguments)
Retrieve the QueryResults of the specified query and arguments |
|
SessionClock |
getSessionClock()
Returns the session clock instance assigned to this session |
|
KnowledgeSessionConfiguration |
getSessionConfiguration()
|
|
org.drools.time.TimerService |
getTimerService()
|
|
WorkingMemoryEntryPoint |
getWorkingMemoryEntryPoint(String name)
Returns the WorkingMemoryEntryPoint instance associated with the given name. |
|
Collection<? extends WorkingMemoryEntryPoint> |
getWorkingMemoryEntryPoints()
Returns a collection of all available working memory entry points for this session. |
|
Collection<WorkingMemoryEventListener> |
getWorkingMemoryEventListeners()
Returns all event listeners. |
|
WorkItemManager |
getWorkItemManager()
Returns the WorkItemManager related to this session. |
|
void |
halt()
Request the engine to stop firing rules. |
|
FactHandle |
insert(Object object)
Inserts a new fact into this entry point |
|
LiveQuery |
openLiveQuery(String query,
Object[] arguments,
ViewChangedEventListener listener)
|
|
void |
queueWorkingMemoryAction(org.drools.common.WorkingMemoryAction action)
|
|
void |
registerChannel(String name,
Channel channel)
|
|
void |
registerExitPoint(String name,
ExitPoint exitPoint)
|
|
void |
removeEventListener(AgendaEventListener listener)
Remove an event listener. |
|
void |
removeEventListener(ProcessEventListener listener)
Remove a process event listener. |
|
void |
removeEventListener(WorkingMemoryEventListener listener)
Remove an event listener. |
|
void |
retract(FactHandle handle)
Retracts the fact for which the given FactHandle was assigned. |
|
void |
setEndOperationListener(org.drools.common.EndOperationListener listener)
|
|
void |
setGlobal(String identifier,
Object object)
Sets a global value on the internal collection |
|
void |
setId(int id)
|
|
void |
signalEvent(String type,
Object event)
Signals the engine that an event has occurred. |
|
void |
signalEvent(String type,
Object event,
long processInstanceId)
Signals the process instance that an event has occurred. |
|
void |
startOperation()
|
|
ProcessInstance |
startProcess(String processId)
Start a new process instance. |
|
ProcessInstance |
startProcess(String processId,
Map<String,Object> parameters)
Start a new process instance. |
|
ProcessInstance |
startProcessInstance(long processInstanceId)
Starts the given process instance (which was created by using createProcesInstance but not yet started). |
|
void |
unregisterChannel(String name)
|
|
void |
unregisterExitPoint(String name)
|
|
void |
update(FactHandle handle,
Object object)
Updates the fact for which the given FactHandle was assigned with the new fact set as the second parameter in this method. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected Queue<org.drools.common.WorkingMemoryAction> actionQueue
Constructor Detail |
---|
public StatefulProcessSession(KnowledgeBase kbase, KnowledgeSessionConfiguration sessionConfiguration, Environment environment)
Method Detail |
---|
public void abortProcessInstance(long processInstanceId)
ProcessRuntime
IllegalArgumentException
.
abortProcessInstance
in interface ProcessRuntime
public ProcessInstance getProcessInstance(long processInstanceId)
ProcessRuntime
null
.
getProcessInstance
in interface ProcessRuntime
null
if it cannot be foundpublic Collection<ProcessInstance> getProcessInstances()
ProcessRuntime
getProcessInstances
in interface ProcessRuntime
public void signalEvent(String type, Object event)
ProcessRuntime
signalEvent
in interface ProcessRuntime
type
- the type of eventevent
- the data associated with this eventpublic void signalEvent(String type, Object event, long processInstanceId)
ProcessRuntime
signalEvent
in interface ProcessRuntime
type
- the type of eventevent
- the data associated with this eventprocessInstanceId
- the id of the process instance that should be signaledpublic ProcessInstance startProcess(String processId)
ProcessRuntime
startProcess
in interface ProcessRuntime
processId
- The id of the process that should be started
ProcessInstance
that represents the instance of the process that was startedpublic ProcessInstance startProcess(String processId, Map<String,Object> parameters)
ProcessRuntime
startProcess
in interface ProcessRuntime
processId
- the id of the process that should be startedparameters
- the process variables that should be set when starting the process instance
ProcessInstance
that represents the instance of the process that was startedpublic ProcessInstance createProcessInstance(String processId, Map<String,Object> parameters)
ProcessRuntime
createProcessInstance
in interface ProcessRuntime
processId
- the id of the process that should be startedparameters
- the process variables that should be set when creating the process instance
ProcessInstance
that represents the instance of the process that was created (but not yet started)public ProcessInstance startProcessInstance(long processInstanceId)
ProcessRuntime
startProcessInstance
in interface ProcessRuntime
processInstanceId
- the id of the process instance that needs to be started
ProcessInstance
that represents the instance of the process that was startedpublic void addEventListener(ProcessEventListener listener)
ProcessEventManager
addEventListener
in interface ProcessEventManager
listener
- the listener to add.public Collection<ProcessEventListener> getProcessEventListeners()
ProcessEventManager
getProcessEventListeners
in interface ProcessEventManager
public void removeEventListener(ProcessEventListener listener)
ProcessEventManager
removeEventListener
in interface ProcessEventManager
listener
- the listener to removepublic KnowledgeBase getKnowledgeBase()
KnowledgeRuntime
getKnowledgeBase
in interface KnowledgeRuntime
public WorkItemManager getWorkItemManager()
ProcessRuntime
WorkItemManager
related to this session. This can be used to
register new WorkItemHandler
s or to complete (or abort) WorkItem
s.
getWorkItemManager
in interface ProcessRuntime
WorkItemManager
related to this sessionpublic Environment getEnvironment()
getEnvironment
in interface KnowledgeRuntime
public InternalProcessRuntime getProcessRuntime()
getProcessRuntime
in interface org.drools.common.InternalKnowledgeRuntime
public KnowledgeSessionConfiguration getSessionConfiguration()
getSessionConfiguration
in interface KnowledgeRuntime
public org.drools.time.TimerService getTimerService()
getTimerService
in interface org.drools.common.InternalKnowledgeRuntime
public void startOperation()
startOperation
in interface org.drools.common.InternalKnowledgeRuntime
public void endOperation()
endOperation
in interface org.drools.common.InternalKnowledgeRuntime
public void executeQueuedActions()
executeQueuedActions
in interface org.drools.common.InternalKnowledgeRuntime
public Queue<org.drools.common.WorkingMemoryAction> getActionQueue()
getActionQueue
in interface org.drools.common.InternalKnowledgeRuntime
public void queueWorkingMemoryAction(org.drools.common.WorkingMemoryAction action)
queueWorkingMemoryAction
in interface org.drools.common.InternalKnowledgeRuntime
public void dispose()
StatefulKnowledgeSession
dispose
in interface StatefulKnowledgeSession
public void setId(int id)
setId
in interface org.drools.common.InternalKnowledgeRuntime
public int getId()
getId
in interface StatefulKnowledgeSession
public void setEndOperationListener(org.drools.common.EndOperationListener listener)
setEndOperationListener
in interface org.drools.common.InternalKnowledgeRuntime
public int fireAllRules()
StatefulRuleSession
fireAllRules
in interface StatefulRuleSession
public int fireAllRules(int max)
StatefulRuleSession
fireAllRules()
again.
fireAllRules
in interface StatefulRuleSession
max
- the maximum number of rules that should be fired
public int fireAllRules(AgendaFilter agendaFilter)
StatefulRuleSession
fireAllRules
in interface StatefulRuleSession
agendaFilter
- filters the activations that may fire
public int fireAllRules(AgendaFilter agendaFilter, int i)
StatefulRuleSession
fireAllRules
in interface StatefulRuleSession
agendaFilter
- filters the activations that may firei
- the maximum number of rules that should be fired
public void fireUntilHalt()
StatefulRuleSession
fireUntilHalt
in interface StatefulRuleSession
public void fireUntilHalt(AgendaFilter agendaFilter)
StatefulRuleSession
fireUntilHalt
in interface StatefulRuleSession
agendaFilter
- filters the activations that may firepublic <T> T execute(Command<T> command)
CommandExecutor
execute
in interface CommandExecutor
public Calendars getCalendars()
getCalendars
in interface KnowledgeRuntime
public Map<String,Channel> getChannels()
getChannels
in interface KnowledgeRuntime
public Object getGlobal(String identifier)
getGlobal
in interface KnowledgeRuntime
public Globals getGlobals()
getGlobals
in interface KnowledgeRuntime
public SessionClock getSessionClock()
KnowledgeRuntime
getSessionClock
in interface KnowledgeRuntime
public void registerChannel(String name, Channel channel)
registerChannel
in interface KnowledgeRuntime
public void registerExitPoint(String name, ExitPoint exitPoint)
registerExitPoint
in interface KnowledgeRuntime
public void setGlobal(String identifier, Object object)
KnowledgeRuntime
setGlobal
in interface KnowledgeRuntime
identifier
- the global identifierobject
- the value assigned to the global identifierpublic void unregisterChannel(String name)
unregisterChannel
in interface KnowledgeRuntime
public void unregisterExitPoint(String name)
unregisterExitPoint
in interface KnowledgeRuntime
public Agenda getAgenda()
WorkingMemory
Agenda
.
getAgenda
in interface WorkingMemory
public QueryResults getQueryResults(String query, Object... arguments)
WorkingMemory
getQueryResults
in interface WorkingMemory
query
- The name of the query.arguments
- The arguments used for the query
public WorkingMemoryEntryPoint getWorkingMemoryEntryPoint(String name)
WorkingMemory
getWorkingMemoryEntryPoint
in interface WorkingMemory
public Collection<? extends WorkingMemoryEntryPoint> getWorkingMemoryEntryPoints()
WorkingMemory
getWorkingMemoryEntryPoints
in interface WorkingMemory
public void halt()
WorkingMemory
Request the engine to stop firing rules. If the engine is currently firing a rule, it will finish executing this rule's consequence before stopping.
This method will not remove active activations from the Agenda.
In case the application later wants to continue firing rules from the point where it stopped,
it should just call org.drools.runtime.StatefulKnowledgeSession.fireAllRules()
or
org.drools.runtime.StatefulKnowledgeSession.fireUntilHalt()
again.
halt
in interface WorkingMemory
public LiveQuery openLiveQuery(String query, Object[] arguments, ViewChangedEventListener listener)
openLiveQuery
in interface WorkingMemory
public String getEntryPointId()
WorkingMemoryEntryPoint
getEntryPointId
in interface WorkingMemoryEntryPoint
public long getFactCount()
WorkingMemoryEntryPoint
getFactCount
in interface WorkingMemoryEntryPoint
public FactHandle getFactHandle(Object object)
WorkingMemoryEntryPoint
getFactHandle
in interface WorkingMemoryEntryPoint
object
- the fact for which the fact handle will be returned.
KnowledgeBaseConfiguration
public <T extends FactHandle> Collection<T> getFactHandles()
WorkingMemoryEntryPoint
FactHandle
s from the current session.
getFactHandles
in interface WorkingMemoryEntryPoint
public <T extends FactHandle> Collection<T> getFactHandles(ObjectFilter filter)
WorkingMemoryEntryPoint
FactHandle
s from the current session for which the facts are accepted by
the given filter.
getFactHandles
in interface WorkingMemoryEntryPoint
filter
- the filter to be applied to the returned collection of FactHandle
s.
public Object getObject(FactHandle factHandle)
WorkingMemoryEntryPoint
getObject
in interface WorkingMemoryEntryPoint
public Collection<Object> getObjects()
WorkingMemoryEntryPoint
Returns all facts from the current session as a Collection.
This class is not a general-purpose Collection implementation! While this class implements the Collection interface, it intentionally violates Collection general contract, which mandates the use of the equals method when comparing objects.
Instead the approach used when comparing objects with the contains(Object) method is dependent on the WorkingMemory configuration, where it can be configured for Identity or for Equality.
getObjects
in interface WorkingMemoryEntryPoint
public Collection<Object> getObjects(ObjectFilter filter)
WorkingMemoryEntryPoint
ObjectFilter
.
getObjects
in interface WorkingMemoryEntryPoint
filter
- the filter to be applied to the returned collection of facts.
public FactHandle insert(Object object)
WorkingMemoryEntryPoint
insert
in interface WorkingMemoryEntryPoint
object
- the fact to be inserted
public void retract(FactHandle handle)
WorkingMemoryEntryPoint
retract
in interface WorkingMemoryEntryPoint
handle
- the handle whose fact is to be retracted.public void update(FactHandle handle, Object object)
WorkingMemoryEntryPoint
update
in interface WorkingMemoryEntryPoint
handle
- the FactHandle for the fact to be updated.object
- the new value for the fact being updated.public void addEventListener(WorkingMemoryEventListener listener)
WorkingMemoryEventManager
addEventListener
in interface WorkingMemoryEventManager
listener
- The listener to add.public void addEventListener(AgendaEventListener listener)
WorkingMemoryEventManager
addEventListener
in interface WorkingMemoryEventManager
listener
- The listener to add.public Collection<AgendaEventListener> getAgendaEventListeners()
WorkingMemoryEventManager
getAgendaEventListeners
in interface WorkingMemoryEventManager
public Collection<WorkingMemoryEventListener> getWorkingMemoryEventListeners()
WorkingMemoryEventManager
getWorkingMemoryEventListeners
in interface WorkingMemoryEventManager
public void removeEventListener(WorkingMemoryEventListener listener)
WorkingMemoryEventManager
removeEventListener
in interface WorkingMemoryEventManager
listener
- The listener to remove.public void removeEventListener(AgendaEventListener listener)
WorkingMemoryEventManager
removeEventListener
in interface WorkingMemoryEventManager
listener
- The listener to remove.public long getLastIdleTimestamp()
getLastIdleTimestamp
in interface org.drools.common.InternalKnowledgeRuntime
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |