Package com.inet.report.event
Interface EngineFinishListener
-
public interface EngineFinishListenerThis interface can be used to notify that the execution of an engine (report) has been finished.- Since:
- 6.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidengineFinish(EngineFinishEvent event)This method will be called if the execution process of the Engine has been finished.default voidupdateProgress(int totalPercentageProgress)Updates the current progress to the specified values
-
-
-
Method Detail
-
engineFinish
void engineFinish(EngineFinishEvent event)
This method will be called if the execution process of the Engine has been finished. (see Engine.addFinishListener).- Parameters:
event- A description of the Engine.- Since:
- 6.1
-
updateProgress
default void updateProgress(int totalPercentageProgress)
Updates the current progress to the specified values- Parameters:
totalPercentageProgress- the current total progress in percents.- Since:
- 17.0
-
-