Interface AsyncTask

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void runAsync​(java.lang.Runnable completeCallback)
      Run this AsyncTask in an async fashion.
      • Methods inherited from interface java.lang.Runnable

        run
    • Method Detail

      • runAsync

        void runAsync​(java.lang.Runnable completeCallback)
        Run this AsyncTask in an async fashion. Which means it will be run and completed at some point. Once it is done the Runnable is called
        Parameters:
        completeCallback - The Runnable that is run once the task was run and completed.