javax.jms |
|
Java Source File Name | Type | Comment |
DeliveryMode.java | Interface | The delivery modes supported by the JMS API are PERSISTENT and
NON_PERSISTENT .
A client marks a message as persistent if it feels that the application will
have problems if the message is lost in transit. |
Destination.java | Interface | A Destination object encapsulates a provider-specific address.
The JMS API does not define a standard address syntax. |
JMSException.java | Class |
This is the root class of all JMS API exceptions.
It provides the following information:
- A provider-specific string describing the error.
|
Message.java | Interface | The Message interface is the root interface of all JMS
messages. |
MessageListener.java | Interface | A MessageListener object is used to receive asynchronously
delivered messages. |
ObjectMessage.java | Interface | An ObjectMessage object is used to send a message that
contains a serializable object in the Java programming language ("Java
object"). |
TextMessage.java | Interface | A TextMessage object is used to send a message containing a
java.lang.String . |