MessageId |
BasicMessage.getCorrelationId() |
MessageId |
AbstractMessage.getCorrelationId()
If this message is correlated with another message, this will be that other message's ID.
|
MessageId |
BasicMessage.getMessageId() |
MessageId |
AbstractMessage.getMessageId()
Returns the message ID that was assigned to this message by the messaging infrastructure.
|
MessageId |
MessageProcessor.send(ProducerConnectionContext context,
BasicMessage basicMessage)
|
MessageId |
MessageProcessor.send(ProducerConnectionContext context,
BasicMessage basicMessage,
Map<String,String> headers)
Send the given message to its destinations across the message bus.
|
<T extends BasicMessage> MessageId |
MessageProcessor.send(ProducerConnectionContext context,
BasicMessageWithExtraData<T> message,
Map<String,String> headers)
|
MessageId |
MessageProcessor.sendWithBinaryData(ProducerConnectionContext context,
BasicMessage basicMessage,
File file)
|
MessageId |
MessageProcessor.sendWithBinaryData(ProducerConnectionContext context,
BasicMessage basicMessage,
File file,
Map<String,String> headers)
|
MessageId |
MessageProcessor.sendWithBinaryData(ProducerConnectionContext context,
BasicMessage basicMessage,
InputStream inputStream)
|
MessageId |
MessageProcessor.sendWithBinaryData(ProducerConnectionContext context,
BasicMessage basicMessage,
InputStream inputStream,
Map<String,String> headers)
Send the given message along with the stream of binary data to its destinations across the message bus.
|