155156157158159160161
} public Command newSignalEvent(long processInstanceId, String type, Object event) { return new SignalEventCommand( processInstanceId, type, event ); }
161162163164165166167168169
return workItemManager; } public void signalEvent(String type, Object event) { SignalEventCommand command = new SignalEventCommand( type, event ); commandService.execute( command ); }
169170171172173174175176177178
} public void signalEvent(String type, Object event, long processInstanceId) { SignalEventCommand command = new SignalEventCommand( processInstanceId, type, event ); commandService.execute( command ); }
193194195196197198199200201
201202203204205206207208209210
168169170171172173174
return startProcess; } public Command newSignalEvent(String type, Object event) { return new SignalEventCommand( type, event ); }
174175176177178179180
142143144145146147148149150