The Spring Framework

Package org.springframework.jms.listener

This package contains the base message listener container facility.

See:
          Description

Interface Summary
SessionAwareMessageListener Variant of the standard JMS MessageListener interface, offering not only the received Message but also the underlying JMS Session object.
 

Class Summary
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 message listener containers.
AbstractPollingMessageListenerContainer Base class for listener container implementations which are based on polling.
DefaultMessageListenerContainer Message listener container variant that uses plain JMS client API, specifically a loop of MessageConsumer.receive() calls that also allow for transactional reception of messages (registering them with XA transactions).
DefaultMessageListenerContainer102 A subclass of DefaultMessageListenerContainer for the JMS 1.0.2 specification, not relying on JMS 1.1 methods like SimpleMessageListenerContainer itself.
SimpleMessageListenerContainer Message listener container that uses the plain JMS client API's MessageConsumer.setMessageListener() method to create concurrent MessageConsumers for the specified listeners.
SimpleMessageListenerContainer102 A subclass of SimpleMessageListenerContainer for the JMS 1.0.2 specification, not relying on JMS 1.1 methods like SimpleMessageListenerContainer itself.
 

Exception Summary
AbstractJmsListeningContainer.SharedConnectionNotInitializedException Exception that indicates that the initial setup of this container's shared JMS Connection failed.
 

Package org.springframework.jms.listener Description

This package contains the base message listener container facility. It also offers the DefaultMessageListenerContainer and SimpleMessageListenerContainer implementations, based on the plain JMS client API.


The Spring Framework

Copyright © 2002-2007 The Spring Framework.