Can I get a complete simple scenario i.e. tutorial that suggest how this should be used, specifically with a Queue?
|
|
The The first thing you have to do is to identify the conditions that you want the methods to wait for. In this case, you will want the
There are a few things to note about the way in which you must use the wait and notify mechanisms. Firstly, you need to ensure that any calls to An example of this, is that a thread may call By synchronizing on a shared object, you can ensure that this problem does not occur, as the second thread's Secondly, you need to put the condition you are checking in a while loop, rather than an if statement, due to a problem known as spurious wake-ups. This is where a waiting thread can sometimes be re-activated without As some of the other answers have mentioned, Java 1.5 introduced a new concurrency library (in the
Of course if you actually need a blocking queue, then you should use an implementation of the BlockingQueue interface. Also, for stuff like this I'd highly recommend Java Concurrency in Practice, as it covers everything you could want to know about concurrency related problems and solutions. |
|||||||||
|
|
Not a queue example, but extremely simple :)
Some important points:
Always use while(condition), because
2) You must hold the lock (synchronized) before invoking wait/nofity (You'll get an exception if you try without holding a lock, so you will notice anyway though). Btw Threads also have to acquire lock before waking. 3) Avoid acquiring any lock within your synchronized block. Strive to not invoke alien methods (methods you don't know for sure what they are doing). If you have to, make sure to take measures to avoid dead locks. 4) Be careful with notify(). Stick with notifyAll() until you know what you are doing. 5)Last, but not least, buy Java Concurrency in Practice! |
|||||||||||
|
|
Even though you asked for Josh Bloch, Effective Java 2nd Edition, Item 69: Prefer concurrency utilities to
|
|||||||||
|
|
Have you taken a look at this Java Tutorial? Further, I'd advise you to stay the heck away from playing with this kind of stuff in real software. It's good to play with it so you know what it is, but concurrency has pitfalls all over the place. It's better to use higher level abstractions and synchronized collections or JMS queues if you are building software for other people. That is at least what I do. I'm not a concurrency expert so I stay away from handling threads by hand wherever possible. |
|||
|
|
|
http://www.javamex.com/tutorials/synchronization_producer_consumer_2.shtml http://www.javamex.com/tutorials/synchronization_producer_consumer.shtml |
|||||||||
|