Package jadex.bpmn.runtime
Interface IStepHandler
- 
- All Known Implementing Classes:
- DefaultStepHandler,- EventMultipleStepHandler
 
 public interface IStepHandlerHandles the transition of steps.
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringSTEP_HANDLERThe step handler identifier.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstep(MActivity activity, IInternalAccess instance, ProcessThread thread, java.lang.Object event)Make a process step, i.e.
 
- 
- 
- 
Field Detail- 
STEP_HANDLERstatic final java.lang.String STEP_HANDLER The step handler identifier.- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
stepvoid step(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.
 
 
- 
 
-