थ्रेड्स प्रतीक्षा(), सूचित करें() के माध्यम से एक दूसरे के साथ संचार कर सकते हैं और सभी को सूचित करें () जावा में तरीके। ये हैं अंतिम ऑब्जेक्ट . में परिभाषित तरीके वर्ग और केवल एक सिंक्रनाइज़ . के भीतर से ही कॉल किया जा सकता है प्रसंग। प्रतीक्षा करें () विधि वर्तमान थ्रेड को तब तक प्रतीक्षा करने का कारण बनती है जब तक कोई अन्य थ्रेड सूचित() . को आमंत्रित नहीं करता है या सभी को सूचित करें () उस वस्तु के लिए तरीके। सूचित करें () विधि एक सूत्र को जगाती है जो उस वस्तु के मॉनिटर पर प्रतीक्षा कर रहा है। सभी को सूचित करें () विधि सभी सूत्र जगाती है जो उस वस्तु के मॉनिटर पर प्रतीक्षा कर रहे हैं। थ्रेड किसी ऑब्जेक्ट के मॉनिटर पर प्रतीक्षा() . को कॉल करके प्रतीक्षा करता है तरीका। ये विधियां IllegalMonitorStateException throw को फेंक सकती हैं यदि वर्तमान थ्रेड ऑब्जेक्ट के मॉनिटर का स्वामी नहीं है।
प्रतीक्षा() विधि सिंटैक्स
public final void wait() throws InterruptedException
सूचित करें() विधि सिंटैक्स
public final void notify()
NotifyAll() विधि सिंटैक्स
public final void notifyAll()
उदाहरण
public class WaitNotifyTest { private static final long SLEEP_INTERVAL = 3000; private boolean running = true; private Thread thread; public void start() { print("Inside start() method"); thread = new Thread(new Runnable() { @Override public void run() { print("Inside run() method"); try { Thread.sleep(SLEEP_INTERVAL); } catch(InterruptedException e) { Thread.currentThread().interrupt(); } synchronized(WaitNotifyTest.this) { running = false; WaitNotifyTest.this.notify(); } } }); thread.start(); } public void join() throws InterruptedException { print("Inside join() method"); synchronized(this) { while(running) { print("Waiting for the peer thread to finish."); wait(); //waiting, not running } print("Peer thread finished."); } } private void print(String s) { System.out.println(s); } public static void main(String[] args) throws InterruptedException { WaitNotifyTest test = new WaitNotifyTest(); test.start(); test.join(); } }
आउटपुट
Inside start() method Inside join() method Waiting for the peer thread to finish. Inside run() method Peer thread finished.