In android, thread pool pattern is use in AsyncTask.
Early the size of the pool was 1 i.e,
there was no support for parallel bunching of AsyncTasks. But from HONEYCOMB version Android allows multiple Asynctask at a time.
We just have to use executeOnExecutor to execute Asynctask like this
0 Comment(s)