Package com.starflow.wf.engine.event

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


   * @param processEngine
   * @param processInstance
   */
  public static void publishProcessTerminalEvent(ProcessEngine processEngine,
      ProcessInstance processInstance) {
    ProcessTerminalEvent processTerminalEvent = new ProcessTerminalEvent(processEngine);
    processTerminalEvent.setProcessInstance(processInstance);
    processEngine.getApplicationContext().publishEvent(processTerminalEvent);
  }
View Full Code Here

TOP

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

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.