Patient Queue Code
public class Queue { private Vector data = new Vector(); synchronized public void put(Object obj) { data.addElement(obj); notify(); } // put(Object)
Previous slide
Next slide
Back to first slide
View graphic version