What is the purpose of the wait(), notify(), and notifyAll() methods
The wait(),notify(), and notifyAll() methods are used to provide an efficient way forthreads to wait for a shared resource. When a thread executes an object's wait() method, itenters the waiting state. It only enters the ready state after another thread invokes theobject's notify() or notifyAll() methods..
-
Interview Candidate
- Aug 26th, 2004
- 2
- 10006
Showing Answers 1 - 2 of 2 Answers
Related Answered Questions
Related Open Questions
What is the purpose of the wait(), notify(), and notifyAll() methods
Related Answered Questions
Related Open Questions