| ABroadcastingClearanceManager.java |
package lectures.animation.threads.wait_notify;
import util.annotations.WebDocuments;
import util.annotations.ComponentWidth;
import util.annotations.Row;
@WebDocuments({"Lectures/AnimationThreadsWaitNotify.pptx", "Lectures/AnimationThreadsWaitNotify.pdf", "Videos/AnimationThreadsWaitNotify.avi"})
public class ABroadcastingClearanceManager extends AClearanceManager
implements BroadcastingClearanceManager {
@Row(1)
@ComponentWidth(100)
public synchronized void proceedAll() {
notifyAll(); // not notify, hover over the method and see Java's explanation for it
}
}