public interface MessageSendingOperations<D>
| Modifier and Type | Method and Description |
|---|---|
<T> void |
convertAndSend(D destination,
T message) |
<T> void |
convertAndSend(D destination,
T message,
MessagePostProcessor postProcessor) |
<T> void |
convertAndSend(T message) |
<T> void |
convertAndSend(T message,
MessagePostProcessor postProcessor) |
<P> void |
send(D destination,
Message<P> message) |
<P> void |
send(Message<P> message) |
<P> void send(Message<P> message) throws MessagingException
MessagingException<P> void send(D destination, Message<P> message) throws MessagingException
MessagingException<T> void convertAndSend(T message)
throws MessagingException
MessagingException<T> void convertAndSend(D destination, T message) throws MessagingException
MessagingException<T> void convertAndSend(T message,
MessagePostProcessor postProcessor)
throws MessagingException
MessagingException<T> void convertAndSend(D destination, T message, MessagePostProcessor postProcessor) throws MessagingException
MessagingException