aspose file tools
The moose likes Threads and Synchronization and the fly likes Need practical example of wait() and notify() Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Threads and Synchronization
Reply Bookmark "Need practical example of wait() and notify()" Watch "Need practical example of wait() and notify()" New topic
Author

Need practical example of wait() and notify()

Kay Crocker
Greenhorn

Joined: Nov 01, 2001
Posts: 17
I have been looking up information about threads and I am a little confused about wait() and notify(). Actually, I am trying to think of a practical situation where you would want to use these function calls.
Can anyone help?
Mo Ibrahim
Greenhorn

Joined: Jul 10, 2001
Posts: 28
Here you go Kay

i have put the sleep in the main() just to let you see what's going on.
After the program has run, you can see the sequence of events happening, how the first two threads are waiting while the third one has completes and lets the other threads run.
netharam ram
Ranch Hand

Joined: Aug 09, 2001
Posts: 202
Here is another simpler example for wait() notify().
code:
**********************************************
// Without using Synchronization, with priority.
class Stwait implements Runnable
{
String s1="null",s2;
int flag=2;
Stwait()
{
Thread t2=new Thread(this,"two");
t2.start();
t2.setPriority(8);
Thread t3=new Thread(this,"three");
t3.start();
t3.setPriority(6);
}
public void run()
{
synchronized(this)
{
for (int i=0;i<3;i++)
{
s2=Thread.currentThread().getName();

if(s2.equals("one"))
{if (flag==1)
{ flag=1;
System.out.println(s2 +" Waiting ");
s1=s2;
try{wait();}catch(Exception e){}
}
System.out.print("firtd");
System.out.print(" ");
flag=1;
System.out.println(s2 +" Notifying: "+s1);
notify();
try{wait();s1=s2;Thread.currentThread().sleep(800);} catch(Exception e){}
}
if(s2.equals("two"))
{ if(flag==2)
{ flag=2;
System.out.println(s2 +" Waiting ");
s1=s2;
try{wait();}catch(Exception e){}
}
System.out.print("sectd");
System.out.print(" ");
flag=2;
System.out.println(s2 +" Notifying: "+s1);
notify();
try{wait();s1=s2;Thread.currentThread().sleep(800);} catch(Exception e){}
}
if(s2.equals("three"))
{ if (flag==3)
{ flag=3;
System.out.println(s1 +" Waiting ");
s1=s2;
try{wait();}catch(Exception e){}
}
System.out.print("thrtd");
System.out.print(" ");
flag=3;
System.out.println(s2 +" Notifying: "+ s1);
notify();
try{wait();s1=s2;Thread.currentThread().sleep(800);} catch(Exception e){}
}
}
}
}
public static void main(String ars[])
{
Thread.currentThread().setPriority(10);
Thread t1=new Thread(new Stwait(),"one");
t1.start();
t1.setPriority(4);
System.out.print(" out of main");
}
}
*****************************************************
end of code:
enjoy middling with java
Netharam
[This message has been edited by netharam ram (edited November 21, 2001).]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Need practical example of wait() and notify()
 
Similar Threads
cleared SCJP6
a Thread question
join vs wait/notify
Does wait () ?
Please Help with info about SCJP Exam