Uses of Interface
org.drools.WorkingMemory

Packages that use WorkingMemory
org.drools The main run-time API. 
org.drools.event   
org.drools.jsr94.rules Provides the core client APIs for using a rule engine. 
org.drools.jsr94.rules.admin Provides the APIs for rule administration. 
org.drools.reteoo Interfaces for the Rete-OO algorithm. 
org.drools.semantics.groovy Groovy Semantic Module. 
org.drools.semantics.java Java Semantic Module. 
org.drools.semantics.python Python Semantic Module. 
org.drools.spi Semantic Provider Interface for extending rule semantics. 
 

Uses of WorkingMemory in org.drools
 

Classes in org.drools that implement WorkingMemory
 class MockWorkingMemory
           
 

Methods in org.drools that return WorkingMemory
 WorkingMemory MockTuple.getWorkingMemory()
           
 WorkingMemory RuleBase.newWorkingMemory()
          Create a new WorkingMemory session for this RuleBase.
 

Methods in org.drools with parameters of type WorkingMemory
 void MockTuple.setWorkingMemory(WorkingMemory workingMemory)
           
 

Uses of WorkingMemory in org.drools.event
 

Methods in org.drools.event that return WorkingMemory
 WorkingMemory WorkingMemoryEvent.getWorkingMemory()
           
 

Constructors in org.drools.event with parameters of type WorkingMemory
WorkingMemoryEventSupport(WorkingMemory workingMemory)
           
ActivationFiredEvent(WorkingMemory workingMemory, Rule rule, Tuple tuple)
           
ActivationCancelledEvent(WorkingMemory workingMemory, Rule rule, Tuple tuple)
           
ActivationCreatedEvent(WorkingMemory workingMemory, Rule rule, Tuple tuple)
           
ConditionTestedEvent(WorkingMemory workingMemory, Rule rule, Condition condition, Tuple tuple, boolean passed)
           
ObjectRetractedEvent(WorkingMemory workingMemory, FactHandle handle)
           
ObjectModifiedEvent(WorkingMemory workingMemory, FactHandle handle, Object object)
           
WorkingMemoryEvent(WorkingMemory workingMemory)
           
ObjectAssertedEvent(WorkingMemory workingMemory, FactHandle handle, Object object)
           
 

Uses of WorkingMemory in org.drools.jsr94.rules
 

Methods in org.drools.jsr94.rules that return WorkingMemory
protected  WorkingMemory RuleSessionImpl.newWorkingMemory()
          Creates a new WorkingMemory for this RuleSession.
protected  WorkingMemory RuleSessionImpl.getWorkingMemory()
          Returns the Drools WorkingMemory associated with this RuleSession.
 

Methods in org.drools.jsr94.rules with parameters of type WorkingMemory
protected  void RuleSessionImpl.setWorkingMemory(WorkingMemory workingMemory)
          Sets the Drools WorkingMemory associated with this RuleSession.
 

Uses of WorkingMemory in org.drools.jsr94.rules.admin
 

Methods in org.drools.jsr94.rules.admin that return WorkingMemory
 WorkingMemory RuleExecutionSetImpl.newWorkingMemory()
          Returns a new WorkingMemory object.
 

Uses of WorkingMemory in org.drools.reteoo
 

Classes in org.drools.reteoo that implement WorkingMemory
(package private)  class WorkingMemoryImpl
          Implementation of WorkingMemory.
 

Methods in org.drools.reteoo that return WorkingMemory
 WorkingMemory ReteTuple.getWorkingMemory()
           
 WorkingMemory RuleBaseImpl.newWorkingMemory()
           
 

Uses of WorkingMemory in org.drools.semantics.groovy
 

Methods in org.drools.semantics.groovy with parameters of type WorkingMemory
 void BlockConsequence.invoke(Tuple tuple, WorkingMemory workingMemory)
          Execute the consequence for the supplied matching Tuple.
 

Uses of WorkingMemory in org.drools.semantics.java
 

Methods in org.drools.semantics.java with parameters of type WorkingMemory
 void BlockConsequence.invoke(Tuple tuple, WorkingMemory workingMemory)
          Execute the consequence for the supplied matching Tuple.
 

Uses of WorkingMemory in org.drools.semantics.python
 

Methods in org.drools.semantics.python with parameters of type WorkingMemory
 void BlockConsequence.invoke(Tuple tuple, WorkingMemory workingMemory)
          Execute the consequence for the supplied matching Tuple.
 

Uses of WorkingMemory in org.drools.spi
 

Methods in org.drools.spi that return WorkingMemory
 WorkingMemory Tuple.getWorkingMemory()
          Returns a reference to the WorkingMemory associated with this object.
 

Methods in org.drools.spi with parameters of type WorkingMemory
 void Consequence.invoke(Tuple tuple, WorkingMemory workingMemory)
          Execute the consequence for the supplied matching Tuple.
 



Copyright © 2001-2004 The Codehaus. All Rights Reserved.