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();
}
}
}
// {