Explore Connect Documentation
Snippets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class Shared {
  static final int MAX_BUFFER_SIZE = 3;
  static Queue<String> buffer = new ArrayDeque<>();
  private static final Object lock = new Object();
  
  static void waitUntilNotified() {
    try {
      synchronized (lock) {
        lock.wait();
      }
    } catch (InterruptedException ex) {
      System.out.println(ex);
    }
  }
  
  static void notifyWaitingThread() {
    synchronized (lock) {
      lock.notify();
    }
  }
}
// {
class Consumer implements Runnable {
  public void run() {
    while (true) {
      if (Shared.buffer.size() == 0) {
        Shared.waitUntilNotified();
      }
      
      consume();
      
      if (shouldNotifyProducers()) {
        Shared.notifyWaitingThread();
      }
    }
  }
  
  private void consume() {
    System.out.println("Consumed: " + Shared.buffer.remove());
  }
  
  private boolean shouldNotifyProducers() {
    return Shared.buffer.size() == Shared.MAX_BUFFER_SIZE - 1;
  }
}
class Producer implements Runnable {
  private static int i = 0;
  
  public void run() {
Press desired key combination and then press ENTER.