Package com.founder.fix.fixflow.core.impl.command

Examples of com.founder.fix.fixflow.core.impl.command.MessageStartProcessInstanceCommand


      Map<String,Object> dataVariableMap=flowMessage.getDataVariableMap();
     
      RuntimeService runtimeService=processEngine.getRuntimeService();
     
      if(eventSubscriptionType==EventSubscriptionType.MessageStartEvent){
        MessageStartProcessInstanceCommand messageStartProcessInstanceCommand=new MessageStartProcessInstanceCommand();
        messageStartProcessInstanceCommand.setProcessDefinitionId(processDefinitionId);
        messageStartProcessInstanceCommand.setNodeId(nodeId);
        messageStartProcessInstanceCommand.setMessageId(messageId);
        //messageStartProcessInstanceCommand.setBusinessKey(businessKey)
        messageStartProcessInstanceCommand.setTransientVariables(dataVariableMap);
       
       
        //runtimeService.startProcessInstanceByMessage(messageStartProcessInstanceCommand);
        debugLog.debug("流程:" +processDefinitionId+" 接收到消息 "+messageId+" 开始启动!");
      }
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.impl.command.MessageStartProcessInstanceCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.