Should it just contain a loop like
while (true) { ... }
I find it not so efficient as it consumes the CPU so much. I would like my thread to keep on waiting for something but what's the best way to make it wait without consuming so much CPU?
|
Should it just contain a loop like while (true) { ... }
I find it not so efficient as it consumes the CPU so much. I would like my thread to keep on waiting for something but what's the best way to make it wait without consuming so much CPU? |
|||
|
There are many ways to do this efficiently using =================================================== You are correct that repeatedly testing the condition is a really bad idea; e.g.
The following is an improvement, but can still be problematic:
The problem is that if you set the sleep interval short, the loop gets expensive. But if you set it longer (e.g. a second or so), then the thread can take up to that amount of time to respond to the condition becoming true. The net result can be reduced throughput and / or sluggish user interfaces. Sometimes the |
||||
|
|
|
Don't do |
|||
|
|
|
Rather than wait for something, it sounds like you could use the Observer pattern. The Observer maintains a list of it's dependents, called Observables, and notifies them of any changes, usually by calling one of the Observer methods. Here's how you would code an Observer class and an Observable class.
|
|||
|
|
wait(). – Anon. Dec 21 '10 at 3:38