接口 AsyncTask

  • 所有超级接口:
    java.lang.Runnable

    public interface AsyncTask
    extends java.lang.Runnable
    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型 方法 说明
      void runAsync​(java.lang.Runnable completeCallback)
      Run this AsyncTask in an async fashion.
      • 从接口继承的方法 java.lang.Runnable

        run
    • 方法详细资料

      • 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
        参数:
        completeCallback - The Runnable that is run once the task was run and completed.