Interface AerisProgressListener


  • public interface AerisProgressListener
    Interface used in combination with AerisCommunicationTask for showing progress. The communication task will let the interface know when it is in the middle of the task, and when the task has finished.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void hideProgress()
      Callback when the listener should hide progress, the task is done or canceled.
      void showProgress()
      Callback when the listener should show progress.The task has started and is running.
    • Method Detail

      • showProgress

        void showProgress()
        Callback when the listener should show progress.The task has started and is running.
      • hideProgress

        void hideProgress()
        Callback when the listener should hide progress, the task is done or canceled.