Package com.starflow.wf.engine.event

Examples of com.starflow.wf.engine.event.ActivityTerminalEvent


   * @param processEngine
   * @param processInstance
   * @param activityInst
   */
  public static void publishActivityTerminalEvent(ProcessEngine processEngine, ProcessInstance processInstance, ActivityInst activityInst) {
    ActivityTerminalEvent activityTerminalEvent = new ActivityTerminalEvent(processEngine);
    activityTerminalEvent.setProcessInstance(processInstance);
    activityTerminalEvent.setActivityInst(activityInst);
    processEngine.getApplicationContext().publishEvent(activityTerminalEvent);
  }
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.event.ActivityTerminalEvent

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.