Package org.camunda.bpm.scenario.run
Interface Runnable
-
- All Known Subinterfaces:
ProcessScenario
public interface Runnable- Author:
- Martin Schimak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhasCanceled(String activityId)Callback method which is called during the scenario run when an activity instance of the given activity id has been (unsuccessfully) cancelled.voidhasCompleted(String activityId)Callback method which is called during the scenario run when an activity instance of the given activity id has been (successfully) completed.voidhasFinished(String activityId)Callback method which is called during the scenario run when an activity instance of the given activity id has been finished (in other words has been either completed or canceled).voidhasStarted(String activityId)Callback method which is called during the scenario run when an activity instance of the given activity id has been started.
-
-
-
Method Detail
-
hasStarted
void hasStarted(String activityId)
Callback method which is called during the scenario run when an activity instance of the given activity id has been started.- Since:
- Camunda BPM 7.0.0-Final
-
hasFinished
void hasFinished(String activityId)
Callback method which is called during the scenario run when an activity instance of the given activity id has been finished (in other words has been either completed or canceled).- Since:
- Camunda BPM 7.0.0-Final
-
hasCompleted
void hasCompleted(String activityId)
Callback method which is called during the scenario run when an activity instance of the given activity id has been (successfully) completed.- Since:
- Camunda BPM 7.1.0-Final
-
hasCanceled
void hasCanceled(String activityId)
Callback method which is called during the scenario run when an activity instance of the given activity id has been (unsuccessfully) cancelled.- Since:
- Camunda BPM 7.1.0-Final
-
-