This question would probably also apply to the general world of Java threads...

I have a thread that I use like so (this is in the run method):

Looper.prepare();

Handler rHandler = new Handler(){
    @Override
    public void handleMessage(Message msg) {
        //ommited...
    }   
};

Looper.loop();

My question is whether the thread is using CPU while it's waiting for things to be pushed to the Handler? Or is it really "sleeping"?

Can having a couple of such threads bog down the system?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

When the thread is waiting for a message, it is not ready to run. A thread that is not ready to run cannot use any CPU.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.