Uses of Interface
org.drools.runtime.rule.FactHandle

Packages that use FactHandle
org.drools.command   
org.drools.event.rule Events emitted while Rules are executing. 
org.drools.runtime.rule The rule runtime classes. 
 

Uses of FactHandle in org.drools.command
 

Methods in org.drools.command that return types with arguments of type FactHandle
static Command<FactHandle> CommandFactory.fromExternalFactHandleCommand(String factHandleExternalForm)
           
 Command<FactHandle> CommandFactoryService.fromExternalFactHandleCommand(String factHandleExternalForm)
           
static Command<FactHandle> CommandFactory.fromExternalFactHandleCommand(String factHandleExternalForm, boolean disconnected)
           
 Command<FactHandle> CommandFactoryService.fromExternalFactHandleCommand(String factHandleExternalForm, boolean disconnected)
           
 

Methods in org.drools.command with parameters of type FactHandle
static Command CommandFactory.newGetObject(FactHandle factHandle)
           
 Command CommandFactoryService.newGetObject(FactHandle factHandle)
           
static Command CommandFactory.newGetObject(FactHandle factHandle, String outIdentifier)
           
 Command CommandFactoryService.newGetObject(FactHandle factHandle, String outIdentifier)
           
static Command CommandFactory.newModify(FactHandle factHandle, List<Setter> setters)
           
 Command CommandFactoryService.newModify(FactHandle factHandle, List<Setter> setters)
           
static Command CommandFactory.newRetract(FactHandle factHandle)
           
 Command CommandFactoryService.newRetract(FactHandle factHandle)
           
 

Uses of FactHandle in org.drools.event.rule
 

Methods in org.drools.event.rule that return FactHandle
 FactHandle ObjectUpdatedEvent.getFactHandle()
           
 FactHandle ObjectRetractedEvent.getFactHandle()
           
 FactHandle ObjectInsertedEvent.getFactHandle()
           
 

Uses of FactHandle in org.drools.runtime.rule
 

Methods in org.drools.runtime.rule with type parameters of type FactHandle
<T extends FactHandle>
Collection<T>
WorkingMemoryEntryPoint.getFactHandles()
          Returns all FactHandles from the current session.
<T extends FactHandle>
Collection<T>
WorkingMemoryEntryPoint.getFactHandles(ObjectFilter filter)
          Returns all FactHandles from the current session for which the facts are accepted by the given filter.
 

Methods in org.drools.runtime.rule that return FactHandle
 FactHandle PropagationContext.getFactHandle()
          The facthandle that was inserted, updated or retracted that created the PropagationContext
 FactHandle WorkingMemoryEntryPoint.getFactHandle(Object object)
          Returns the fact handle associated with the given object.
 FactHandle Row.getFactHandle(String identifier)
          Return the FactHandle associated with the given identifier
 FactHandle WorkingMemoryEntryPoint.insert(Object object)
          Inserts a new fact into this entry point
 

Methods in org.drools.runtime.rule that return types with arguments of type FactHandle
 List<? extends FactHandle> Activation.getFactHandles()
           
 

Methods in org.drools.runtime.rule with parameters of type FactHandle
 Object WorkingMemoryEntryPoint.getObject(FactHandle factHandle)
          Returns the object associated with the given FactHandle.
 void WorkingMemoryEntryPoint.retract(FactHandle handle)
          Retracts the fact for which the given FactHandle was assigned.
 void WorkingMemoryEntryPoint.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.
 



Copyright © 2001-2014 JBoss by Red Hat. All Rights Reserved.