Interface Runnable

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      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.
      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.
      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).
      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.
    • 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