Uses of Interface
org.springframework.jms.listener.MessageListenerContainer
Packages that use 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
Classes in org.springframework.jms.config with type parameters of type MessageListenerContainerModifier and TypeInterfaceDescriptioninterface
Factory ofMessageListenerContainer
based on aJmsListenerEndpoint
definition.Methods in org.springframework.jms.config that return MessageListenerContainerModifier 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.Methods in org.springframework.jms.config that return types with arguments of type MessageListenerContainerModifier and TypeMethodDescriptionJmsListenerEndpointRegistry.getListenerContainers()
Return the managedMessageListenerContainer
instance(s).Methods in org.springframework.jms.config with parameters of type MessageListenerContainerModifier 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
Classes in org.springframework.jms.listener that implement MessageListenerContainerModifier 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
Classes in org.springframework.jms.listener.endpoint that implement MessageListenerContainerModifier and TypeClassDescriptionclass
Extension of the generic JCA 1.5GenericMessageEndpointManager
, adding JMS-specific support for ActivationSpec configuration.