Does AsyncTask works simultaneously?
问题 Does AsyncTask works simultaneously or first come first served manner? . For example i've 3 AsyncTasks that have same interface class and same listener functions. Executing 3 AsyncTasks at same time. Which response from AsyncTasks will shows in listener function? Doubts: 1. Does AsyncTasks run parallel or first come first served manner? 2. If AsyncTasks run parallel manner how to handle same listener function for all AsyncTasks? Nb : Doubt 2 is because first response recieving while doing