Package com.starflow.wf.engine.handle

Examples of com.starflow.wf.engine.handle.IHandle


    activityInst.setCurrentState(StarFlowState.ACT_INST_RUNING);
    event.getActInstRep().updateActivityStateToRunning(activityInst.getActivityInstId(),
        StarFlowState.ACT_INST_RUNING, new Date());
   
    //进入异常状态,等待人工干预,不继续往下运行
    IHandle handle = ActivityHandlerFactory.buildHandler(activityInst.getActivityType());
    try {
      handle.action(event, activityInst);
    } catch (InterruptStrategyException e) {
      logger.error("非人工环节执行逻辑失败", e);
      return;
    } finally {
      triggerFilterExecuter(event, activityInst);
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.handle.IHandle

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.