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

import lectures.animation.threads.wait_notify.lock.Lock;
import lectures.inheritance.InheritingStringDatabase;
import util.models.ListenableVector;
import util.models.PropertyListenerRegisterer;

@WebDocuments({"Lectures/AnimationThreadsWaitNotify.pptx", "Lectures/AnimationThreadsWaitNotify.pdf", "Videos/AnimationThreadsWaitNotify.avi"})
public interface ComplicatedLock extends Lock, PropertyListenerRegisterer {
    public ListenableVector getWaitingThreads() ;
}