List of usage examples for java.util Set notifyAll
@HotSpotIntrinsicCandidate public final native void notifyAll();
From source file:com.netflix.curator.framework.recipes.queue.TestDistributedQueue.java
private void addToTakenItems(TestQueueItem message, Set<TestQueueItem> takenItems, int itemQty) { synchronized (takenItems) { takenItems.add(message);/* w w w .j ava 2 s.c o m*/ if (takenItems.size() > itemQty) { takenItems.notifyAll(); } } }