Convert the given Object to serialized form, possibly using a {@link hunt.stomp.converter.MessageConverter}, wrap it as a message and send it to a default destination. @param payload the Object to use as payload
Convert the given Object to serialized form, possibly using a {@link hunt.stomp.converter.MessageConverter}, wrap it as a message and send it to the given destination. @param destination the target destination @param payload the Object to use as payload
Convert the given Object to serialized form, possibly using a {@link hunt.stomp.converter.MessageConverter}, wrap it as a message with the given headers and send it to the given destination. @param destination the target destination @param payload the Object to use as payload @param headers headers for the message to send
Convert the given Object to serialized form, possibly using a {@link hunt.stomp.converter.MessageConverter}, wrap it as a message, apply the given post processor, and send the resulting message to a default destination. @param payload the Object to use as payload @param postProcessor the post processor to apply to the message
Convert the given Object to serialized form, possibly using a {@link hunt.stomp.converter.MessageConverter}, wrap it as a message, apply the given post processor, and send the resulting message to the given destination. @param destination the target destination @param payload the Object to use as payload @param postProcessor the post processor to apply to the message
Convert the given Object to serialized form, possibly using a {@link hunt.stomp.converter.MessageConverter}, wrap it as a message with the given headers, apply the given post processor, and send the resulting message to the given destination. @param destination the target destination @param payload the Object to use as payload @param headers headers for the message to send @param postProcessor the post processor to apply to the message
Send a message to a default destination. @param message the message to send
Send a message to the given destination. @param destination the target destination @param message the message to send
Operations for sending messages to a destination.
@author Mark Fisher @author Rossen Stoyanchev @since 4.0 @param (T) the destination type