Package com.starflow.wf.engine.event

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


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

TOP

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

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.