Package jadex.bpmn.runtime
Interface IStepHandler
- 
- All Known Implementing Classes:
 DefaultStepHandler,EventMultipleStepHandler
public interface IStepHandlerHandles the transition of steps. 
- 
- 
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSTEP_HANDLERThe step handler identifier. 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstep(jadex.bpmn.model.MActivity activity, IInternalAccess instance, ProcessThread thread, java.lang.Object event)Make a process step, i.e. 
 - 
 
- 
- 
Field Detail
- 
STEP_HANDLER
static final java.lang.String STEP_HANDLER
The step handler identifier.- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
step
void step(jadex.bpmn.model.MActivity activity, IInternalAccess instance, ProcessThread thread, java.lang.Object event)Make a process step, i.e. find the next edge or activity for a just executed thread.- Parameters:
 activity- The activity to execute.instance- The process instance.thread- The process thread.
 
 - 
 
 -