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

I'm new to Android programming and I'm using AsyncTasks to fetch data in response to the user pressing a button. This works well and keeps the interface responsive while fetching the data, but when I checked out what was going on in the Eclipse debugger, I found out that every time a new AsyncTask was created (which is quite often, because they can only be used once), a new thread was being created but never terminated. The result is a large number of AsyncTask threads just sitting there. I'm not sure if this is a problem in practice or not, but I'd really like to get rid of those extra threads. How can I kill these threads?

Thanks!

share|improve this question
What do you mean with "never terminated"? Does the task never end its doInbackground method or do you just see the asynctask object in the allocation traker? – Francesco Laurita Jun 19 '10 at 22:29
4  
The doInBackground method completes, but the thread continues to show up in the debug window. For example: Thread [<23> AsyncTask #4](Running) – Computerish Jun 20 '10 at 2:35

3 Answers

up vote 128 down vote accepted

AsyncTask manages a thread pool, created with ThreadPoolExecutor. It will have from 5 to 128 threads. If there are more than 5 threads, those extra threads will stick around for at most 10 seconds before being removed. (note: these figures are for the presently-visible open source code and vary by Android release).

Leave the AsyncTask threads alone, please.

share|improve this answer
uff! good to hear that! hehe :) – duberton Jun 19 '10 at 23:48
Thanks for the explanation! I'm glad to know that I'm not doing anything wrong. Out of curiosity, why is it designed like that? Why not just end the threads after all of the methods have returned? – Computerish Jun 20 '10 at 2:38
5  
Presumably to save time forking the threads on later requests. – CommonsWare Jun 20 '10 at 11:26
Beautiful Answer – Strider Jul 18 '12 at 9:40

In addition to CommonsWare's response:

Currently I'm using Android 2.2, and my application uses no more than one AsyncTask at any time, but I'm creating a new one every x minutes. At first new AsyncTask Threads start to appear (a new Thread for a new AsyncTask) but after 5 threads (as mentioned by CommonsWare) they just stay visible in the debug window, and get re-used when new AsyncTask threads are needed. They just stay there until the debugger disconnects.

share|improve this answer
Yes, confirmed: I see no more than 5 AsyncTasks. – Seraphim Feb 22 at 17:35

I also find that after five asynk task thread always apear untill the degugger is attached.

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.