February 2002
Beginner to intermediate
544 pages
10h 23m
English
package javax.jms; public interface Message { // Fields static final int DEFAULT_DELIVERY_MODE = DeliveryMode.PERSISTENT; static final int DEFAULT_PRIORITY = 4; static final long DEFAULT_TIME_TO_LIVE = 0; // Methods void acknowledge() throws JMSException; void clearBody() throws JMSException; void clearProperties() throws JMSException; boolean getBooleanProperty(String name) throws JMSException; byte getByteProperty(String name) throws JMSException; double getDoubleProperty(String name) throws JMSException; float getFloatProperty(String name) throws JMSException; int getIntProperty(String name) throws JMSException; String getJMSCorrelationID() throws JMSException; byte [] getJMSCorrelationIDAsBytes() throws JMSException; ...
Read now
Unlock full access