1 23 24 25 package javax.jms; 26 27 63 64 public interface MessageProducer { 65 66 85 86 void 87 setDisableMessageID(boolean value) throws JMSException ; 88 89 90 98 99 boolean 100 getDisableMessageID() throws JMSException ; 101 102 103 122 123 void 124 setDisableMessageTimestamp(boolean value) throws JMSException ; 125 126 127 135 136 boolean 137 getDisableMessageTimestamp() throws JMSException ; 138 139 140 156 157 void 158 setDeliveryMode(int deliveryMode) throws JMSException ; 159 160 161 170 171 int 172 getDeliveryMode() throws JMSException ; 173 174 175 192 193 void 194 setPriority(int defaultPriority) throws JMSException ; 195 196 197 206 207 int 208 getPriority() throws JMSException ; 209 210 211 225 226 void 227 setTimeToLive(long timeToLive) throws JMSException ; 228 229 230 240 241 long 242 getTimeToLive() throws JMSException ; 243 244 253 254 Destination 255 getDestination() throws JMSException ; 256 257 268 269 void 270 close() throws JMSException ; 271 272 273 293 294 void 295 send(Message message) throws JMSException ; 296 297 318 319 void 320 send(Message message, 321 int deliveryMode, 322 int priority, 323 long timeToLive) throws JMSException ; 324 325 326 351 352 void 353 send(Destination destination, Message message) throws JMSException ; 354 355 356 379 380 void 381 send(Destination destination, 382 Message message, 383 int deliveryMode, 384 int priority, 385 long timeToLive) throws JMSException ; 386 387 388 389 } 390 | Popular Tags |