Interface QuickstatProgress
-
public interface QuickstatProgressInterface for monitoring, and possibly stop, the progress of the simple statistical report computation.- Author:
- Bruno Dillenseger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidquickstatComplete()Called to indicate that the statistical report computation is complete.booleanquickstatIsCanceled()Called to check whether the computation should be canceled.voidquickstatProgress(java.lang.String subtask, int done)Called to give the amount of work achieved up to now, as well as a description of current subtask.voidquickstatStarted(java.lang.String testId, int fullSize)Called to give the target test name, and an estimation of the total amount of computation
-
-
-
Method Detail
-
quickstatStarted
void quickstatStarted(java.lang.String testId, int fullSize)Called to give the target test name, and an estimation of the total amount of computation- Parameters:
testId- the target test namefullSize- the estimated amount of work
-
quickstatComplete
void quickstatComplete()
Called to indicate that the statistical report computation is complete.
-
quickstatIsCanceled
boolean quickstatIsCanceled()
Called to check whether the computation should be canceled.
-
quickstatProgress
void quickstatProgress(java.lang.String subtask, int done)Called to give the amount of work achieved up to now, as well as a description of current subtask.
-
-