1 23 24 25 package javax.jms; 26 27 import java.util.Enumeration ; 28 29 55 56 public interface QueueBrowser { 57 58 66 67 Queue 68 getQueue() throws JMSException ; 69 70 71 82 83 String  84 getMessageSelector() throws JMSException ; 85 86 87 96 97 Enumeration 98 getEnumeration() throws JMSException ; 99 100 101 112 113 void 114 close() throws JMSException ; 115 } 116 | Popular Tags |