Package | Description |
---|---|
org.springframework.jms.config |
Support package for declarative messaging configuration,
with Java configuration and XML schema support.
|
org.springframework.jms.listener |
This package contains the base message listener container facility.
|
org.springframework.jms.listener.adapter |
Message listener adapter mechanism that delegates to target listener
methods, converting messages to appropriate message content types
(such as String or byte array) that get passed into listener methods.
|
org.springframework.jms.listener.endpoint |
This package provides JCA-based endpoint management for JMS message listeners.
|
org.springframework.jms.remoting |
Remoting classes for transparent Java-to-Java remoting via a JMS provider.
|
Class and Description |
---|
AbstractMessageListenerContainer
Abstract base class for Spring message listener container implementations.
|
DefaultMessageListenerContainer
Message listener container variant that uses plain JMS client APIs, specifically
a loop of
MessageConsumer.receive() calls that also allow for
transactional reception of messages (registering them with XA transactions). |
MessageListenerContainer
Internal abstraction used by the framework representing a message
listener container.
|
SimpleMessageListenerContainer
Message listener container that uses the plain JMS client API's
MessageConsumer.setMessageListener() method to
create concurrent MessageConsumers for the specified listeners. |
Class and Description |
---|
AbstractJmsListeningContainer
Common base class for all containers which need to implement listening
based on a JMS Connection (either shared or freshly obtained for each attempt).
|
AbstractMessageListenerContainer
Abstract base class for Spring message listener container implementations.
|
AbstractPollingMessageListenerContainer
Base class for listener container implementations which are based on polling.
|
MessageListenerContainer
Internal abstraction used by the framework representing a message
listener container.
|
SessionAwareMessageListener
Variant of the standard JMS
MessageListener interface,
offering not only the received Message but also the underlying
JMS Session object. |
Class and Description |
---|
SessionAwareMessageListener
Variant of the standard JMS
MessageListener interface,
offering not only the received Message but also the underlying
JMS Session object. |
SubscriptionNameProvider
Interface to be implemented by message listener objects that suggest a specific
name for a durable subscription that they might be registered with.
|
Class and Description |
---|
MessageListenerContainer
Internal abstraction used by the framework representing a message
listener container.
|
Class and Description |
---|
SessionAwareMessageListener
Variant of the standard JMS
MessageListener interface,
offering not only the received Message but also the underlying
JMS Session object. |