public void signalEventReceived(String signalName, String executionId, Map<String, Object> processVariables) {
commandExecutor.execute(new SignalEventReceivedCmd(signalName, executionId, processVariables, null));
}
public void signalEventReceivedAsync(String signalName, String executionId) {
commandExecutor.execute(new SignalEventReceivedCmd(signalName, executionId, true, null));
}