I would appreciate your help in understanding a "Concurrency Example" from: http://forums.sun.com/thread.jspa?threadID=735386
public synchronized void enqueue(T obj) { // do addition to internal list and then... this.notify(); } public synchronized T dequeue() { while (this.size()==0) { this.wait(); } return // something from the queue }
My Question is: Why is this code valid?
=> When I synchronize a method like "public synchronized
" => then I synchronize on the "Instance of the Object ==> this
".
However in the example above:
Calling "dequeue" I will get the "lock/monitor" on
this
Now I am in the dequeue method. As the list is zero, the calling thread will be "
waited
"From my understanding I have now a deadlock situation, as I will have no chance of ever enqueuing an object (from another thread), as the "dequeue" method is not yet finished and the dequeue "method" holds the lock on
this
: So I will never ever get the possibility to call "enqueue" as I will not get the "this
" lock.
Background: I have exactly the same problem: I have some kind of connection pool (List of Connections) and need to block if all connections are checked. What is the correct way to synchronize the List to block, if size exceeds a limit or is zero?