Package com.azure.core.amqp
Interface AmqpManagementNode
-
- All Superinterfaces:
AsyncCloseable
public interface AmqpManagementNode extends AsyncCloseable
An AMQP endpoint that allows users to perform management and metadata operations on it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Mono<AmqpAnnotatedMessage>send(AmqpAnnotatedMessage message)Sends a message to the management node.Mono<AmqpAnnotatedMessage>send(AmqpAnnotatedMessage message, DeliveryOutcome deliveryOutcome)Sends a message to the management node and associates thedeliveryOutcomewith that message.-
Methods inherited from interface com.azure.core.util.AsyncCloseable
closeAsync
-
-
-
-
Method Detail
-
send
Mono<AmqpAnnotatedMessage> send(AmqpAnnotatedMessage message)
Sends a message to the management node.- Parameters:
message- Message to send.- Returns:
- Response from management node.
-
send
Mono<AmqpAnnotatedMessage> send(AmqpAnnotatedMessage message, DeliveryOutcome deliveryOutcome)
Sends a message to the management node and associates thedeliveryOutcomewith that message.- Parameters:
message- Message to send.deliveryOutcome- Delivery outcome to associate with the message.- Returns:
- Response from management node.
-
-