Package com.azure.spring.messaging.core
Interface SendOperation
public interface SendOperation
Operations for sending
Message
to a destination.-
Method Summary
Modifier and TypeMethodDescriptiondefault <T> void
Send aMessage
to the given destination synchronously.Send aMessage
to the given destination asynchronously.
-
Method Details
-
sendAsync
Send aMessage
to the given destination asynchronously.- Type Parameters:
T
- payload class in message- Parameters:
destination
- destinationmessage
- message- Returns:
- Mono Void
-
send
Send aMessage
to the given destination synchronously.- Type Parameters:
T
- payload class in message- Parameters:
destination
- destinationmessage
- message
-