How do I create a Thread Manager for an Android App?
I would like to know how to start and code a thread manager for my Android App. My app is going to fill a list with a net开发者_运维百科work I/O and I have to manage threads for that.
I never done this before and I don't know where to start. I heard about Thread Pool and other stuff, but I'm quite confused. Could someone please help me make my way through ?
Thanks
AsyncTask
already has a thread pool -- just use it.
There are some managers in the libraries (I'm sure others will recommend) but like me you may find it better in the long term to build one to meet your exact needs.
It can be quite simple, and can be general to Java and not just Android. It could simply be an ArrayList of Runnables. One method adds a runnable to the back of the ArrayList. The first time this method is invoked a new Thread is initialized and run. This Thread just repeatedly removes a Runnable from the front of the ArrayList, and executes it. When the ArrayList is empty the thread exits.
You need to take care to keep access to the ArrayList thread safe, but it really can be that simple.
Things get a little more complex if you need to add priorities or to cancel tasks on the queue or in progress.
精彩评论