This is really weird to me, but looks like notifyAll()/notify() failed in my program. The code is rather complicated, basically I have three threads A, B, C
A sends request to B and wait() on the request with a 10 secs timeout, when B finishes, it calls notify() to wake up A.
C in a deadloop feeds a lot of strings to A through a queue, A picks up them and prints out. Each time A print out a string it sends a request to B and wait.
So the workflow comes to be:
C keeps feeding a in deadloop
- A prints out string from C
- A sends request to B and wait(10)
B notify() A ......
A prints out string from C .... again and again ....
This works in first a few seconds. however, after a while I see when B prints out that it has notify() A, A is still waiting because the queue which C uses to feed A is getting increased quickly, and no string gets printed by A. Finally, after 10 secs, A complains the request timeout.
This looks like the notify() failed because B printed out message after it called notify(). Given wait/notify is radical feature of java, I can not believe it will fail. Is it possible?