Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example I have two methods method1() and method2(), now each of them creates new AsyncTask and starts executing some http-query inside. Each task returns List (list1 and list2) of objects and I need to wait all of them and put these lists into one to return. What is the best way to do that?

And I don't really need to keep order, it could be list1 after list2. What is the best way to wait all results and where I should accumulate them? And what if I want to keep order?

share|improve this question

3 Answers

up vote 0 down vote accepted

Its hard to give much help without seeing what you have done already. But I would create a member ArrayList or LinkedHashMap and call the first AsyncTask with the first method and put those results in the list. Then call the second method from your onPostExecute() of the first AynscTask and add those results to the list. If you need more help then please post some of your code that you have started

share|improve this answer
I have many code :) But I want to get smart solution which isn't based on my code. There is a problem that methods starts two tasks which run simultaneously and nobody knows which will end its work faster. – P_King Jan 10 at 20:57
I don't doubt you have many code but I meant just the relevant code. Anyway, you can run each and put in separate lists then when one finishes add it to a main list in onPostExecute() and do the same with the other list – codeMagic Jan 10 at 20:59

According to description of AsyncTask you have two interesting methods:

  • doInBackground
  • onPostExecute

The first one is used to do work in background thread and returns result, the second one is called in UI Thread with result as an argument. You can add your downloaded/computed data to the list in doInBackground of each AsyncTask, and this should work.

If you want to know if both AsyncTasks have completed then you have to have two flags, both set and checked in UI thread: set in onPreExecute , checked in onPostExecute

share|improve this answer

I suggest you use "Thread"s instead of AsyncTask. For example:

new Thread(new Runnable(){

   list1 = getList1();

   new Thread(new Runnable(){

      list2 = getList2();
      //you have now list1 and list2, call your method here to do your stuff
   }).start();
}).start();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.