I get following error when trying to do invoke notifyAll() inside a synchronized statement: Invoked Object.notify() outside synchronized context.
Example:
final List list = new ArrayList();
synchronized(list) {..... invoked notifyAll() here};
|
I get following error when trying to do invoke Example:
|
||||
|
|
You can only call
In other words, the calling thread must own the object's monitor. If, inside |
|||||
|
|
|
My guess is that you are calling |
|||
|
|
|
A thread must own the lock on the object it's invoking wait, notify, notifyAll on. In the code you posted, the thread owns the lock on 'list' and then it calls notifyAll on 'this' object. |
|||
|
|