jadex.bpmn.runtime.IStepHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-kernel-bpmn Show documentation
Show all versions of jadex-kernel-bpmn Show documentation
The Jadex BPMN kernel provides a workflow kernel for the standardized business process modeling notation. The kernel relies on annotated BPMN diagrams, which include detailed execution information.
package jadex.bpmn.runtime;
import jadex.bpmn.model.MActivity;
import jadex.bridge.IInternalAccess;
/**
* 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, IInternalAccess instance, ProcessThread thread, Object event);
}