Package | Description |
---|---|
org.springframework.integration.core |
Provides core classes.
|
org.springframework.integration.history |
Provides classes supporting the capture of message history.
|
Modifier and Type | Method and Description |
---|---|
<R> Future<R> |
AsyncMessagingOperations.asyncConvertSendAndReceive(MessageChannel channel,
Object request,
MessagePostProcessor requestPostProcessor) |
<R> Future<R> |
AsyncMessagingTemplate.asyncConvertSendAndReceive(MessageChannel channel,
Object request,
MessagePostProcessor requestPostProcessor) |
<R> Future<R> |
AsyncMessagingOperations.asyncConvertSendAndReceive(Object request,
MessagePostProcessor requestPostProcessor) |
<R> Future<R> |
AsyncMessagingTemplate.asyncConvertSendAndReceive(Object request,
MessagePostProcessor requestPostProcessor) |
<R> Future<R> |
AsyncMessagingOperations.asyncConvertSendAndReceive(String channelName,
Object request,
MessagePostProcessor requestPostProcessor) |
<R> Future<R> |
AsyncMessagingTemplate.asyncConvertSendAndReceive(String channelName,
Object request,
MessagePostProcessor requestPostProcessor) |
<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 |
MessagingTemplate.convertAndSend(MessageChannel channel,
T object,
MessagePostProcessor postProcessor) |
<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 |
MessagingTemplate.convertAndSend(String channelName,
T object,
MessagePostProcessor postProcessor) |
<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.
|
<T> void |
MessagingTemplate.convertAndSend(T object,
MessagePostProcessor postProcessor) |
Object |
MessagingOperations.convertSendAndReceive(MessageChannel channel,
Object request,
MessagePostProcessor requestPostProcessor)
Send the given request object to the specified channel, converting the object
to a message with a configured MessageConverter.
|
Object |
MessagingTemplate.convertSendAndReceive(MessageChannel channel,
Object request,
MessagePostProcessor requestPostProcessor) |
Object |
MessagingOperations.convertSendAndReceive(Object request,
MessagePostProcessor requestPostProcessor)
Send the given request object to the default channel, converting the object
to a message with a configured MessageConverter.
|
Object |
MessagingTemplate.convertSendAndReceive(Object request,
MessagePostProcessor requestPostProcessor) |
Object |
MessagingOperations.convertSendAndReceive(String channelName,
Object request,
MessagePostProcessor requestPostProcessor)
Send the given request object to the specified channel, converting the object
to a message with a configured MessageConverter.
|
Object |
MessagingTemplate.convertSendAndReceive(String channelName,
Object request,
MessagePostProcessor requestPostProcessor) |
Modifier and Type | Class and Description |
---|---|
class |
HistoryWritingMessagePostProcessor |
Copyright © 2018. All rights reserved.