예제 #1
0
 protected void executeTask(Runnable run) {
   mThreadPoolManager.executeTask(run);
 }
예제 #2
0
 /**
  * 子线程执行一个任务
  *
  * @param task
  */
 protected void executeTask(Task task) {
   this.lastTask = task;
   mThreadPoolManager.executeTask(task);
 }