Package org.kie.api.command
Interface KieCommands
- 
 public interface KieCommandsKieCommands is a factory for Commands that can be used by classes that implement CommandExecutor. Typically more than one Command will want to be executed, where is where the BatchExecution comes in, which takes a List of commands, think of it as CompositeCommand.
- 
- 
Method Summary
 
- 
- 
- 
Method Detail- 
newDisposeCommand newDispose() 
 - 
newInsertCommand newInsert(Object object, String outIdentifier, boolean returnObject, String entryPoint) 
 - 
newInsertElementsCommand newInsertElements(Iterable objects, String outIdentifier, boolean returnObject, String entryPoint) 
 - 
newDeleteCommand newDelete(FactHandle factHandle) 
 - 
newModifyCommand newModify(FactHandle factHandle, List<Setter> setters) 
 - 
newFireAllRulesCommand newFireAllRules() 
 - 
newFireAllRulesCommand newFireAllRules(int max) 
 - 
newGetFactHandleInEntryPointCommand newGetFactHandleInEntryPoint(Object object, String entryPoint) 
 - 
newGetObjectCommand newGetObject(FactHandle factHandle) 
 - 
newGetObjectCommand newGetObject(FactHandle factHandle, String outIdentifier) 
 - 
newGetObjectsCommand newGetObjects() 
 - 
newGetObjectsCommand newGetObjects(ObjectFilter filter) 
 - 
newGetObjectsCommand newGetObjects(ObjectFilter filter, String outIdentifier) 
 - 
newBatchExecutionBatchExecutionCommand newBatchExecution(List<? extends Command> commands) 
 - 
newBatchExecutionBatchExecutionCommand newBatchExecution(List<? extends Command> commands, String lookup) 
 - 
newRegisterWorkItemHandlerCommandCommand newRegisterWorkItemHandlerCommand(WorkItemHandler handler, String workItemName) 
 - 
newAbortWorkItemCommand newAbortWorkItem(long workItemId) 
 - 
fromExternalFactHandleCommandCommand<FactHandle> fromExternalFactHandleCommand(String factHandleExternalForm) 
 - 
fromExternalFactHandleCommandCommand<FactHandle> fromExternalFactHandleCommand(String factHandleExternalForm, boolean disconnected) 
 - 
newGetFactHandlesCommand newGetFactHandles() 
 - 
newGetFactHandlesCommand newGetFactHandles(ObjectFilter filter) 
 - 
newGetFactHandlesCommand newGetFactHandles(ObjectFilter filter, String outIdentifier) 
 - 
newAdvanceSessionTimeCommand<Long> newAdvanceSessionTime(long amount, TimeUnit unit, String outIdentifier) 
 - 
newApplyPmmlModelCommand newApplyPmmlModel(PMMLRequestData request) 
 
- 
 
-