Interface StepsListener
public interface StepsListener
Listener on steps, their states and their progress.
- Since:
- 5.1.42
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onProgressChange
(@NotNull String title, int percentage) Informs about the step's progress having changed.void
Informs about a step being started.void
onStateChange
(@NotNull String title, @NotNull String stateDescription) Informs about the step's state having changed.void
Informs 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
-