package lectures.animation.threads.wait_notify;
import util.annotations.WebDocuments;

@WebDocuments({"Lectures/AnimationThreadsWaitNotify.pptx", "Lectures/AnimationThreadsWaitNotify.pdf", "Videos/AnimationThreadsWaitNotify.avi"})
public interface ClearanceManager {
    public void proceed();
    public void waitForProceed();   
    

}