org.springframework.jms.core |
Core package of the JMS support.
Provides a JmsTemplate class and various callback interfaces.
|
Java Source File Name | Type | Comment |
JmsOperations.java | Interface | Specifies a basic set of JMS operations.
Implemented by
JmsTemplate . |
JmsTemplate.java | Class | Helper class that simplifies synchronous JMS access code.
This class requires a JMS 1.1+ provider, because it builds on the
domain-independent API. |
JmsTemplate102.java | Class | A subclass of JmsTemplate that uses the JMS 1.0.2 specification, rather than
the JMS 1.1 methods used by JmsTemplate itself. |
MessageCreator.java | Interface | Creates a JMS message given a
Session .
The Session typically is provided by an instance
of the
JmsTemplate class.
Implementations do not need to concern themselves with
checked JMSExceptions (from the 'javax.jms '
package) that may be thrown from operations they attempt. |
MessagePostProcessor.java | Interface | To be used with JmsTemplate's send method that convert an object to a message.
It allows for further modification of the message after it has been processed
by the converter. |
ProducerCallback.java | Interface | Callback for sending a message to a JMS destination.
To be used with the
JmsTemplate.execute(ProducerCallback) method, often implemented as an anonymous inner class.
The typical implementation will perform multiple operations on the
supplied JMS
Session and
MessageProducer . |
SessionCallback.java | Interface | Callback for executing any number of operations on a provided
Session . |