1 17 18 package org.apache.avalon.cornerstone.blocks.scheduler; 19 20 import java.util.NoSuchElementException ; 21 22 30 public interface PriorityQueue 31 { 32 35 void clear(); 36 37 42 boolean isEmpty(); 43 44 49 void insert( Object element ); 50 51 57 Object peek() throws NoSuchElementException ; 58 59 65 Object pop() throws NoSuchElementException ; 66 } 67 68 | Popular Tags |