Interface QuickstatProgress


  • public interface QuickstatProgress
    Interface 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
      void quickstatComplete()
      Called to indicate that the statistical report computation is complete.
      boolean quickstatIsCanceled()
      Called to check whether the computation should be canceled.
      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.
      void quickstatStarted​(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 name
        fullSize - 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.