71727374757677787980
} return workItemManager; } public void signalEvent(String type, Object event) { SignalEventCommand command = new SignalEventCommand(); command.setEventType(type); command.setEvent(event); commandService.execute(command); }
267268269270271272273274275276
return unsupported(KieSession.class, ProcessInstance.class); } @Override public void signalEvent( String type, Object event ) { SignalEventCommand cmd = new SignalEventCommand(); cmd.setEvent(event); cmd.setEventType(type); executeCommand(cmd); }