接口 AsyncTask
-
- 所有超级接口:
java.lang.Runnable
public interface AsyncTask extends java.lang.Runnable
-
-
方法详细资料
-
runAsync
void runAsync(java.lang.Runnable completeCallback)
Run thisAsyncTaskin an async fashion. Which means it will be run and completed at some point. Once it is done theRunnableis called- 参数:
completeCallback- TheRunnablethat is run once the task was run and completed.
-
-