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

I am working on a multithreaded game in java. I have several worker threads that fetch modules from a central thread manager, which then executes it on its own. Now I would like to be able to pause such a thread if it temporarily has nothing to execute. I have tried calling the wait() method on it from the thread manager, but that only resulted in it ignoring the notify() call that followed it.

I googled a bit on it too, only finding that most sites refer to functions like suspend(), pause(), etc, which are now marked a deprecated on the java documentation pages.

So in general, what is the way to pause or continue a thread on demand?

share|improve this question

5 Answers

up vote 3 down vote accepted

You can use an if block in the thread with a sentinal variable that is set to false if you want to halt the thread's action. This works best if the thread is performing loops.

share|improve this answer

Maybe I'm missing the point, but if they have nothing to do, why not just let them die? Then spawn a new thread when you have work for one to do again.

It sounds to me like you're trying to have the conversation both ways. In my (humble) opinion, you should either have the worker threads responsible for asking the central thread manager for work (or 'modules'), or you should have the central thread manager responsible for doling out work and kicking off the worker threads.

What it sounds like is that most of the time the worker threads are responsible for asking for work. Then, sometimes, the responsibility flips round to the thread manager to tell the workers not to ask for a while. I think the system will stay simpler if this responsibility stays on only one side.

So, given this, and with my limited knowledge of what you're developing, I would suggest either:

Have the thread manager kick of worker threads when there's stuff to do and keep track of their progress, letting them die when they're done and only creating new ones when there's new stuff to do. Or

Have a set number of always existing worker threads that poll the thread manager for work and (if there isn't any) sleep for a period of time using Thread.sleep() before trying again. This seems pretty wasteful to me so I would lean towards option 1 unless you've a good reason not to?

share|improve this answer
it is a good point you make there, but it would still force me to let the game's main thread sleep or wake when it should wait for all modules to execute. Also, since each of the modules (for example; AI, animation, 3D renderer, scripting) will need to send feedback about their completion anyway, why not have them immediately try to get some new work? You do have a fair point though. Ill think it over :) But in the end the sentinel was what I was actually looking for. – Bartvbl Sep 6 '11 at 6:22
Fair enough - but I think it's definitely do-able without any threads having to sleep at all. You're right, there's no reason the workers shouldn't pick up another job if there's one waiting. I think KarlP is right though - use ExecutorService. There's no need to reinvent the wheel when Java has some great concurrency libraries already. – Russell Sep 6 '11 at 6:32
part of that is that I would also like to learn about these things. So programming wise it might be easier, but it is "having used it before" what I am after. And sure, I could perfectly let threads die if they can't get work at one point and respawning them when more is available. – Bartvbl Sep 6 '11 at 6:47
Ah, if you're interested in learning can I recommend the brilliant "Java Concurrency in Practice"? amazon.co.uk/Java-Concurrency-Practice-Brian-Goetz/dp/… – Russell Sep 6 '11 at 6:49
hmm.. that certainly looks interesting. Ill take a look when i get home. Thanks for the help :) – Bartvbl Sep 6 '11 at 8:34

In the grand tradition of not answering your question, and suggest that You Are Doing It Wrong, I Offer this :-)

Maybe you should refactor your code to use a ExecutorService, its a rather good design. http://download.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html

share|improve this answer

There are many ways to do this, but in the commonest (IMO), the worker thread calls wait() on the work queue, while the work generator should call notify(). This causes the worker thread to stop, without the thread manager doing anything. See e.g. this article on thread pools and work queues.

share|improve this answer

use a blocking queue to fetch those modules using take()

or poll(time,unit) for a timed out wait so you can cleanly shutdown

these will block the current thread until a module is available

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.