Package | Description |
---|---|
org.springframework.jms.config |
Support package for declarative messaging configuration,
with Java configuration and XML schema support.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractJmsListenerEndpoint
Base model for a JMS listener endpoint.
|
class |
MethodJmsListenerEndpoint
A
JmsListenerEndpoint providing the method to invoke to process
an incoming message for this endpoint. |
class |
SimpleJmsListenerEndpoint
A
JmsListenerEndpoint simply providing the MessageListener to
invoke to process an incoming message for this endpoint. |
Modifier and Type | Method and Description |
---|---|
C |
AbstractJmsListenerContainerFactory.createListenerContainer(JmsListenerEndpoint endpoint) |
C |
JmsListenerContainerFactory.createListenerContainer(JmsListenerEndpoint endpoint)
Create a
MessageListenerContainer for the given JmsListenerEndpoint . |
JmsMessageEndpointManager |
DefaultJcaListenerContainerFactory.createListenerContainer(JmsListenerEndpoint endpoint) |
protected MessageListenerContainer |
JmsListenerEndpointRegistry.createListenerContainer(JmsListenerEndpoint endpoint,
JmsListenerContainerFactory<?> factory)
Create and start a new container using the specified factory.
|
void |
JmsListenerEndpointRegistrar.registerEndpoint(JmsListenerEndpoint endpoint)
Register a new
JmsListenerEndpoint using the default
JmsListenerContainerFactory to create the underlying container. |
void |
JmsListenerEndpointRegistrar.registerEndpoint(JmsListenerEndpoint endpoint,
JmsListenerContainerFactory<?> factory)
Register a new
JmsListenerEndpoint alongside the
JmsListenerContainerFactory to use to create the underlying container. |
void |
JmsListenerEndpointRegistry.registerListenerContainer(JmsListenerEndpoint endpoint,
JmsListenerContainerFactory<?> factory)
Create a message listener container for the given
JmsListenerEndpoint . |
void |
JmsListenerEndpointRegistry.registerListenerContainer(JmsListenerEndpoint endpoint,
JmsListenerContainerFactory<?> factory,
boolean startImmediately)
Create a message listener container for the given
JmsListenerEndpoint . |