package sorters;

public class AnimationThread extends Thread {
	
	public AnimationThread(AnimatedSortPanel asp, long interval) {
        /* Your code here */
	}
	
	public void sendUpdate(Update update) {
        /* Your code here */
        /* Place the update in a blocking queue */
	}

	public void run() {
        /* Your code here */
        /* Check the blocking queue for updates.  Then apply them.  */
	}
}
