1 23 24 25 package javax.jms; 26 27 86 87 public interface TopicPublisher extends MessageProducer { 88 89 97 98 Topic 99 getTopic() throws JMSException ; 100 101 102 122 123 void 124 publish(Message message) throws JMSException ; 125 126 127 145 146 void 147 publish(Message message, 148 int deliveryMode, 149 int priority, 150 long timeToLive) throws JMSException ; 151 152 153 175 176 void 177 publish(Topic topic, Message message) throws JMSException ; 178 179 180 200 201 void 202 publish(Topic topic, 203 Message message, 204 int deliveryMode, 205 int priority, 206 long timeToLive) throws JMSException ; 207 } 208 | Popular Tags |