All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.bpmn.runtime.IStepHandler Maven / Gradle / Ivy

There is a newer version: 5.0-alpha6
Show newest version
package jadex.bpmn.runtime;

import jadex.bpmn.model.MActivity;
import jadex.bpmn.runtime.impl.ProcessThread;
import jadex.core.IComponent;

/**
 *  Handles the transition of steps.
 */
public interface IStepHandler
{
	//-------- constants --------
	
	/** The step handler identifier. */
	public static final String  STEP_HANDLER = "step_handler";

	
	/**
	 *  Make a process step, i.e. find the next edge or activity for a just executed thread.
	 *  @param activity	The activity to execute.
	 *  @param instance	The process instance.
	 *  @param thread	The process thread.
	 */
	public void step(MActivity activity, IComponent instance, ProcessThread thread, Object event);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy