JMS API
The JMS API is provided in the Java package javax.jms
. Below are the main interfaces provided in the javax.jms
package:
Interface |
Description |
---|---|
ConnectionFactory interface |
A WebSphere configured resource object that a client uses to create a connection to the JMS provider. JMS clients access the connection factory through interfaces so the application code does not need to be changed if the underlying JMS implementation changes. Administrators configure the connection factories which have JNDI names so that JMS clients can look them up. These resources in WebSphere are known as JMS Resource references. |
Connection interface |
Once a connection factory is obtained, a connection to a JMS provider can be created. A connection represents a communication link between the application and the messaging system. Depending on the connection type, connections allow users to create sessions for sending and receiving messages from a queue or topic. |
Destination interface |
A WebSphere-configured... |