public interface StepsListener
Listener on steps, their states and their progress.
Since:
5.1.42
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onProgressChange(@NotNull String title, int percentage)
    Informs about the step's progress having changed.
    void
    onStart(@NotNull String title)
    Informs about a step being started.
    void
    onStateChange(@NotNull String title, @NotNull String stateDescription)
    Informs about the step's state having changed.
    void
    onStop(@NotNull String title)
    Informs about a step being stopped.
  • Method Details

    • onStart

      void onStart(@NotNull @NotNull String title)
      Informs about a step being started.
      Parameters:
      title - The title of the step.
      Since:
      5.1.42
    • onStop

      void onStop(@NotNull @NotNull String title)
      Informs about a step being stopped.
      Parameters:
      title - The title of the step.
      Since:
      5.1.42
    • onProgressChange

      void onProgressChange(@NotNull @NotNull String title, int percentage)
      Informs about the step's progress having changed.
      Parameters:
      title - The title of the step.
      percentage - The percentage of the step's progress.
      Since:
      5.1.42
    • onStateChange

      void onStateChange(@NotNull @NotNull String title, @NotNull @NotNull String stateDescription)
      Informs about the step's state having changed.
      Parameters:
      title - The title of the step.
      stateDescription - The description of the state's change.
      Since:
      5.1.42