Interface StepsListener
public interface StepsListener
Listener on steps, their states and their progress.
- Since:
- 5.1.42
-
Method Summary
Modifier and TypeMethodDescriptionvoidonProgressChange(@NotNull String title, int percentage) Informs about the step's progress having changed.voidInforms about a step being started.voidonStateChange(@NotNull String title, @NotNull String stateDescription) Informs about the step's state having changed.voidInforms about a step being stopped.
-
Method Details
-
onStart
Informs about a step being started.- Parameters:
title- The title of the step.- Since:
- 5.1.42
-
onStop
Informs about a step being stopped.- Parameters:
title- The title of the step.- Since:
- 5.1.42
-
onProgressChange
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
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
-