4

我有两个异步任务,即任务 1 和任务 2。

我需要先运行任务 1,然后再运行任务 2,但我不想通过在任务 1 的 onPostExecute 实现中调用任务 2 来耦合两者;因为我在其他情况下单独使用任务 1。

我有一种方法可以定义两个异步任务而不会相互绑定并在特定情况下将它们链接起来?

非常感谢您的帮助。

4

2 回答 2

0

你可以尝试这样的事情:

final Executor directExecutor = new Executor() {
  public void execute(Runnable r) {
    r.run();
  }
};
AsyncTask.execute(new Runnable() {
  task1.executeOnExecutor(directExecutor, params1);
  task2.executeOnExecutor(directExecutor, params2);
});

我的机器上现在没有 android SDK,所以我无法验证它。

于 2013-07-25T12:18:09.047 回答
-1

您可以执行以下操作:

YourAsyncClass1 thread1 = new YourAsyncClass1();
thread1.execute(inputArgument1);

    try {
        outputResult1 = thread1.get();
    } catch (InterruptedException e) {
        e.printStackTrace();
    } catch (ExecutionException e) {
        e.printStackTrace();
    }
if(outputResult1 == true /*Or expected result*/){
  YourAsyncClass2 thread2 = new YourAsyncClass2();
  thread2.execute(inputArgument2);
}
于 2013-07-25T09:33:31.080 回答