Switch to full style
Java2 codes,problems ,discussions and solutions are here
Post a reply

purpose of the wait(), notify(), and notifyAll() methods

Thu Nov 06, 2008 10:41 pm

What is the purpose of the wait(), notify(), and notifyAll() methods?



Re: purpose of the wait(), notify(), and notifyAll() methods

Thu Nov 06, 2008 10:43 pm

The wait(),notify(), and notifyAll() methods are used to provide an efficient way for threads to wait for a shared resource. When a thread executes an object's wait() method, it enters the waiting state. It only enters the ready state after another thread invokes the object's notify() or notifyAll() methods.

Post a reply
  Related Posts  to : purpose of the wait(), notify(), and notifyAll() methods
 Change cursor to wait     -  
 purpose of finalization     -  
 purpose of the Runtime class     -  
 Which methods is best for SEO?     -  
 What Are Constructor Methods?     -  
 JSP Passing Arrays to Methods     -  
 methods in ActionListener interface     -  
 Static Methods and Variables     -  
 Calling Overloaded Methods     -  
 how to run inidividual test methods in junit4     -  

Topic Tags

Java Threads