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?

