Uses of Interface
org.springframework.jms.listener.MessageListenerContainer
Package
Description
Support package for declarative messaging configuration,
with Java configuration and XML schema support.
This package contains the base message listener container facility.
This package provides JCA-based endpoint management for JMS message listeners.
-
Uses of MessageListenerContainer in org.springframework.jms.config
Modifier and TypeInterfaceDescriptioninterface
Factory ofMessageListenerContainer
based on aJmsListenerEndpoint
definition.Modifier and TypeMethodDescriptionprotected MessageListenerContainer
JmsListenerEndpointRegistry.createListenerContainer
(JmsListenerEndpoint endpoint, JmsListenerContainerFactory<?> factory) Create and start a new container using the specified factory.JmsListenerEndpointRegistry.getListenerContainer
(String id) Return theMessageListenerContainer
with the specified id ornull
if no such container exists.Modifier and TypeMethodDescriptionJmsListenerEndpointRegistry.getListenerContainers()
Return the managedMessageListenerContainer
instance(s).Modifier and TypeMethodDescriptionprotected abstract MessageListener
AbstractJmsListenerEndpoint.createMessageListener
(MessageListenerContainer container) Create aMessageListener
that is able to serve this endpoint for the specified container.protected MessagingMessageListenerAdapter
MethodJmsListenerEndpoint.createMessageListener
(MessageListenerContainer container) protected MessageListener
SimpleJmsListenerEndpoint.createMessageListener
(MessageListenerContainer container) void
AbstractJmsListenerEndpoint.setupListenerContainer
(MessageListenerContainer listenerContainer) void
JmsListenerEndpoint.setupListenerContainer
(MessageListenerContainer listenerContainer) Set up the specified message listener container with the model defined by this endpoint. -
Uses of MessageListenerContainer in org.springframework.jms.listener
Modifier and TypeClassDescriptionclass
Abstract base class for Spring message listener container implementations.class
Base class for listener container implementations which are based on polling.class
Message listener container variant that uses plain JMS client APIs, specifically a loop ofMessageConsumer.receive()
calls that also allow for transactional reception of messages (registering them with XA transactions).class
Message listener container that uses the plain JMS client API'sMessageConsumer.setMessageListener()
method to create concurrent MessageConsumers for the specified listeners. -
Uses of MessageListenerContainer in org.springframework.jms.listener.endpoint
Modifier and TypeClassDescriptionclass
Extension of the generic JCA 1.5GenericMessageEndpointManager
, adding JMS-specific support for ActivationSpec configuration.