February 2002
Beginner to intermediate
544 pages
10h 23m
English
package javax.jms; public interface MessageProducer { void close() throws JMSException; int getDeliveryMode() throws JMSException; boolean getDisableMessageID() throws JMSException; boolean getDisableMessageTimestamp() throws JMSException; int getPriority() throws JMSException; long getTimeToLive() throws JMSException; void setDeliveryMode(int deliveryMode) throws JMSException; void setDisableMessageID(boolean value) throws JMSException; void setDisableMessageTimestamp(boolean value) throws JMSException; void setPriority(int defaultPriority) throws JMSException; void setTimeToLive(long timeToLive) throws JMSException; }
Read now
Unlock full access