use of org.drools.core.command.runtime.process.StartProcessCommand in project drools by kiegroup.
the class CommandBasedStatefulKnowledgeSession method startProcess.
public ProcessInstance startProcess(String processId, Map<String, Object> parameters) {
StartProcessCommand command = new StartProcessCommand();
command.setProcessId(processId);
command.setParameters(parameters);
return runner.execute(command);
}
Aggregations