Inter-Thread Communication

wait(), notify(), notifyAll()

Inter-Thread Communication

Code Examples

Thread coordination

java
1
2synchronized(obj) {
3    obj.wait();
4    obj.notify();
5}
6          

Use Cases

  • Producer-consumer

Common Mistakes to Avoid

  • Calling wait() without lock