Answer Posted / vivek ghavle
The Object class has three methods, wait(), notify(), and
notifyAll() that help threads
Communicate.
Suppose a mail processor thread has to keep checking if
there is any mail to process.
For example,
if one thread is a mail-delivery thread and one thread is a
mail-processor thread,
the mail-processor thread has to keep checking to see if
there's any mail to process.
Using the wait and notify mechanism, the mail-processor
thread could check for
mail, and if it doesn't find any it can say, "Hey, I'm not
going to waste my time
checking for mail every two seconds. I'm going to go hang
out, and when the mail
deliverer puts something in the mailbox, have him notify me
so I can go back to
runnable and do some work."
In other words, using wait() and notify() lets one thread
put itself into a "waiting room" until some other thread
notifies it that there's a reason to come back out.
wait(), notify(), and notifyAll() must be called from within
a synchronized
context! A thread can't invoke a wait or notify method on an
object unless it owns
that object's lock.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Why use a datasource when you can directly specify a connection details? (in a J2EE application)
What do you know about seam?
What’s jboss jbpm?
What is the purpose of the finally clause of a try-catch-finally statement?
What you mean by COM and DCOM?
Why doesn’t the focus feature on the tag work in every circumstance?
A user of a web application sees a jsessionid argument in the URL whenever a resource is accessed. What does this mean? a. The form must have the field jsessionid b. URL rewriting is used as the session method c. Cookies are used for managing sessions
Is jvm a overhead?
How would you create a button with rounded edges?
What do you need to set-up a cluster with jboss?
How to deploy Jar, War files in J2EE?
Describe responsibilities of Activator?
What is aop(assepct oriented programing)?
Can I import same package/class twice? Will the jvm load the package twice at runtime?
How substring() method of string class create memory leaks?