3303-flashcards/hATaBiZQ - 3303/RfqZKLxs - How do the wait and notify methods interact.md
gwg313 e83b60af4f
first commit
update readme

reformat
2026-04-20 23:10:20 -04:00

288 B

How do the wait() and notify() methods interact?


🛑

  • wait(): Causes the current thread to block and enter the Waiting state.
  • notify() / notifyAll(): Invoked by another thread to move the waiting thread(s) back to the Runnable state.