Interface AsyncTask

    • Method Detail

      • runAsync

        void runAsync​(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.