List of usage examples for java.lang Runnable notifyAll
@HotSpotIntrinsicCandidate public final native void notifyAll();
From source file:Main.java
public static void localNotify(Runnable runnable) { synchronized (runnable) { runnable.notifyAll(); } }
From source file:Main.java
public static void localNotifyAll(Runnable runnable) { synchronized (runnable) { runnable.notifyAll(); } }