Package | Description |
---|---|
org.springframework.integration |
Base package for Spring Integration Core.
|
org.springframework.integration.core |
Provides core classes.
|
org.springframework.integration.dispatcher |
Provides classes related to dispatching messages.
|
org.springframework.integration.file |
Base package for File support.
|
org.springframework.integration.handler |
Provides classes implementing various types of message handler.
|
org.springframework.integration.handler.advice |
Provides classes that are used to advise
MessageHandler s with
cross-cutting concerns. |
org.springframework.integration.mapping |
Provides classes related to mapping to/from message headers.
|
org.springframework.integration.scripting |
Base package for scripting support.
|
org.springframework.integration.store |
Provides classes releated to storing messages.
|
org.springframework.integration.support.channel |
Provides classes supporting channel resolution.
|
org.springframework.integration.support.converter |
Provides classes supporting message conversion.
|
org.springframework.integration.test.support |
Provides several test support classes including for testing Spring Integration
request-response message scenarios.
|
org.springframework.integration.transformer |
Contains core-implementation of various Transformers which includes Enrichers
and Filters.
|
Modifier and Type | Class and Description |
---|---|
class |
MessageDeliveryException
Exception that indicates an error occurred during message delivery.
|
class |
MessageDispatchingException
Exception that indicates an internal error occurred within
a
MessageDispatcher preventing message delivery. |
class |
MessageHandlingException
Exception that indicates an error occurred during message handling.
|
class |
MessageRejectedException
Exception that indicates a message has been rejected by a selector.
|
class |
MessageTimeoutException
Exception that indicates a timeout elapsed prior to successful message delivery.
|
Modifier and Type | Method and Description |
---|---|
<T> void |
MessagingOperations.convertAndSend(MessageChannel channel,
T message)
Send the given object to the specified channel, converting the object
to a message with a configured MessageConverter.
|
<T> void |
MessagingOperations.convertAndSend(MessageChannel channel,
T message,
MessagePostProcessor postProcessor)
Send the given object to the specified channel, converting the object
to a message with a configured MessageConverter.
|
<T> void |
MessagingOperations.convertAndSend(String channelName,
T message)
Send the given object to the specified channel, converting the object
to a message with a configured MessageConverter.
|
<T> void |
MessagingOperations.convertAndSend(String channelName,
T message,
MessagePostProcessor postProcessor)
Send the given object to the specified channel, converting the object
to a message with a configured MessageConverter.
|
<T> void |
MessagingOperations.convertAndSend(T message)
Send the given object to the default channel, converting the object
to a message with a configured MessageConverter.
|
<T> void |
MessagingOperations.convertAndSend(T message,
MessagePostProcessor postProcessor)
Send the given object to the default channel, converting the object
to a message with a configured MessageConverter.
|
void |
MessageHandler.handleMessage(Message<?> message)
Handles the message if possible.
|
<P> Message<P> |
MessagingOperations.receive()
Receive a message synchronously from the default channel, but only
wait up to a specified time for delivery.
|
<P> Message<P> |
MessagingOperations.receive(PollableChannel channel)
Receive a message synchronously from the specified channel, but only
wait up to a specified time for delivery.
|
<P> Message<P> |
MessagingOperations.receive(String channelName)
Receive a message synchronously from the specified channel, but only
wait up to a specified time for delivery.
|
Object |
MessagingOperations.receiveAndConvert()
Receive a message synchronously from the default channel, but only
wait up to a specified time for delivery.
|
Object |
MessagingTemplate.receiveAndConvert() |
Object |
MessagingOperations.receiveAndConvert(PollableChannel channel)
Receive a message synchronously from the specified channel, but only
wait up to a specified time for delivery.
|
Object |
MessagingTemplate.receiveAndConvert(PollableChannel channel) |
Object |
MessagingOperations.receiveAndConvert(String channelName)
Receive a message synchronously from the specified channel, but only
wait up to a specified time for delivery.
|
Object |
MessagingTemplate.receiveAndConvert(String channelName) |
<P> void |
MessagingOperations.send(Message<P> message)
Send a message to the default channel.
|
<P> void |
MessagingOperations.send(MessageChannel channel,
Message<P> message)
Send a message to the specified channel.
|
<P> void |
MessagingOperations.send(String channelName,
Message<P> message)
Send a message to the specified channel.
|
Modifier and Type | Class and Description |
---|---|
class |
AggregateMessageDeliveryException
An Exception that encapsulates an aggregated group of Exceptions for use by dispatchers
that may try multiple handler invocations within a single dispatch operation.
|
Modifier and Type | Method and Description |
---|---|
Message<File> |
FileReadingMessageSource.receive() |
Modifier and Type | Class and Description |
---|---|
class |
ReplyRequiredException
Exception that indicates no reply message is produced by a handler
that does have a value of true for the 'requiresReply' property.
|
Modifier and Type | Class and Description |
---|---|
static class |
ErrorMessageSendingRecoverer.RetryExceptionNotAvailableException |
static class |
ExpressionEvaluatingRequestHandlerAdvice.MessageHandlingExpressionEvaluatingAdviceException |
Modifier and Type | Class and Description |
---|---|
class |
MessageMappingException
Exception that indicates an error during message mapping.
|
Modifier and Type | Class and Description |
---|---|
class |
ScriptingException |
Modifier and Type | Class and Description |
---|---|
class |
MessageStoreException
Exception for problems that occur when using a
MessageStore implementation. |
Modifier and Type | Class and Description |
---|---|
class |
ChannelResolutionException
Thrown by a ChannelResolver when it cannot resolve a channel name.
|
Modifier and Type | Class and Description |
---|---|
class |
MessageConversionException |
Modifier and Type | Method and Description |
---|---|
void |
AbstractResponseValidator.handleMessage(Message<?> message)
handle the message
|
Modifier and Type | Class and Description |
---|---|
class |
MessageTransformationException
Base Exception type for Message transformation errors.
|
Copyright © 2015. All rights reserved.