Package com.starflow.wf.engine.handle

Examples of com.starflow.wf.engine.handle.IHandle.action()


        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
Copyright © 2018 www.massapi.com. 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.