Explain the purposes of methods wait(), notify(), notifyAll
()?
Answer Posted / tek
All the three methods are called in synchronized block or
method.
wait(): Thread calling wait method will go to the waiting
state and it will loose its monitor. It will execute only
if it is notified by the other threads.
notify(): To notify thread which is waiting for the concern
object.
notifyAll(): To notify all the threads which are in waiting
state.
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the infobus?
What do you mean by Socket Programming?
AS a developer will u create a data source in connection pool? If so how will u do that, how to access the object from connection pool using IRAD tool?
Explain how will the struts know which action class to call when you submit a form?
What is clustering? What are the different algorithms used for clustering?
when A client sent a request to the server to open facebook page and close the browser after this request .at that time the same user do login by using a different browser then that session id will exist or not for the same client??
What is the diffrence between a local-tx-datasource and a xa-datasource?
Which component handles cluster communication in jboss?
What is the difference between ear, jar and war file?
how to make a index.jsp for running the site in internet and find an error for connection with weblogic server and java that give an error invalid object name.and how to maintain session.
what are the advantages of JTA over JTS?
What is the purpose of the finally clause of a try-catch-finally statement?
the same information whether it will connect to the database or it will be used previous information?
Is there a guarantee of uniqueness for entity beans?
What is the purpose of the wait(), notify(), and notifyall() methods?