Package org.drools.core.spi
Class Accumulator.SafeAccumulator
- java.lang.Object
-
- org.drools.core.spi.Accumulator.SafeAccumulator
-
- All Implemented Interfaces:
Serializable,Accumulator,Invoker,RuleComponent
- Enclosing interface:
- Accumulator
public static class Accumulator.SafeAccumulator extends Object implements Accumulator, Serializable
This class is used as a wrapper delegate when a security policy is in place.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.drools.core.spi.Accumulator
Accumulator.SafeAccumulator
-
-
Constructor Summary
Constructors Constructor Description SafeAccumulator(Accumulator delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectaccumulate(Object workingMemoryContext, Object context, Tuple leftTuple, InternalFactHandle handle, Declaration[] declarations, Declaration[] innerDeclarations, ReteEvaluator reteEvaluator)Executes the accumulate (action) code for the given fact handleObjectcreateContext()Creates the context object for an accumulator session.ObjectcreateWorkingMemoryContext()Creates and return a context object for each working memory instanceObjectgetResult(Object workingMemoryContext, Object context, Tuple leftTuple, Declaration[] declarations, ReteEvaluator reteEvaluator)Gets the result of the accummulationObjectinit(Object workingMemoryContext, Object context, Tuple leftTuple, Declaration[] declarations, ReteEvaluator reteEvaluator)Executes the initialization block of codebooleansupportsReverse()Returns true if this accumulator supports operation reversalbooleantryReverse(Object workingMemoryContext, Object context, Tuple leftTuple, InternalFactHandle handle, Object value, Declaration[] declarations, Declaration[] innerDeclarations, ReteEvaluator reteEvaluator)Reverses the accumulate action for the given fact handlebooleanwrapsCompiledInvoker()
-
-
-
Constructor Detail
-
SafeAccumulator
public SafeAccumulator(Accumulator delegate)
-
-
Method Detail
-
createWorkingMemoryContext
public Object createWorkingMemoryContext()
Description copied from interface:AccumulatorCreates and return a context object for each working memory instance- Specified by:
createWorkingMemoryContextin interfaceAccumulator- Returns:
-
createContext
public Object createContext()
Description copied from interface:AccumulatorCreates the context object for an accumulator session. The context is passed as a parameter to every subsequent accumulator method call in the same session.- Specified by:
createContextin interfaceAccumulator- Returns:
-
init
public Object init(Object workingMemoryContext, Object context, Tuple leftTuple, Declaration[] declarations, ReteEvaluator reteEvaluator)
Description copied from interface:AccumulatorExecutes the initialization block of code- Specified by:
initin interfaceAccumulatorleftTuple- tuple causing the rule firedeclarations- previous declarations
-
accumulate
public Object accumulate(Object workingMemoryContext, Object context, Tuple leftTuple, InternalFactHandle handle, Declaration[] declarations, Declaration[] innerDeclarations, ReteEvaluator reteEvaluator)
Description copied from interface:AccumulatorExecutes the accumulate (action) code for the given fact handle- Specified by:
accumulatein interfaceAccumulator
-
supportsReverse
public boolean supportsReverse()
Description copied from interface:AccumulatorReturns true if this accumulator supports operation reversal- Specified by:
supportsReversein interfaceAccumulator- Returns:
-
tryReverse
public boolean tryReverse(Object workingMemoryContext, Object context, Tuple leftTuple, InternalFactHandle handle, Object value, Declaration[] declarations, Declaration[] innerDeclarations, ReteEvaluator reteEvaluator)
Description copied from interface:AccumulatorReverses the accumulate action for the given fact handle- Specified by:
tryReversein interfaceAccumulator
-
getResult
public Object getResult(Object workingMemoryContext, Object context, Tuple leftTuple, Declaration[] declarations, ReteEvaluator reteEvaluator)
Description copied from interface:AccumulatorGets the result of the accummulation- Specified by:
getResultin interfaceAccumulator- Returns:
-
wrapsCompiledInvoker
public boolean wrapsCompiledInvoker()
-
-