Package org.drools.core.rule.accessor
Interface CompiledInvoker
-
- All Superinterfaces:
Invoker,RuleComponent
public interface CompiledInvoker extends Invoker
This interface is used by semantic modules that are compiled to bytecode.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetMethodBytecode()Generated code should be able to return a String which represents the bytecode.static booleanisCompiledInvoker(Invoker invoker)-
Methods inherited from interface org.drools.core.rule.accessor.Invoker
wrapsCompiledInvoker
-
-
-
-
Method Detail
-
getMethodBytecode
java.lang.String getMethodBytecode()
Generated code should be able to return a String which represents the bytecode. The elements in the list will be used to compare one semantic invoker with another by making sure each item in the list is equivalent (equals()). There are utilities in the ASM package to retrieve the bytecode for this.
-
isCompiledInvoker
static boolean isCompiledInvoker(Invoker invoker)
-
-