1 22 package org.jboss.util.timeout; 23 24 30 public interface TimeoutPriorityQueue 31 { 32 39 TimeoutExt offer(long time, TimeoutTarget target); 40 41 46 TimeoutExt take(); 47 48 54 TimeoutExt poll(); 55 56 64 TimeoutExt poll(long wait); 65 66 72 TimeoutExt peek(); 73 74 79 boolean remove(TimeoutExt timeout); 80 81 84 void clear(); 85 86 89 void cancel(); 90 91 94 int size(); 95 } 96 | Popular Tags |