Package com.inet.report.event
Interface EngineFinishListener
public interface EngineFinishListener
This interface can be used to notify that the execution of an engine (report) has been finished.
- Since:
- 6.1
-
Method Summary
Modifier and TypeMethodDescriptionvoidengineFinish(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 Details
-
engineFinish
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
-