Uses of Interface
com.microsoft.azure.servicebus.IMessageSender
-
Packages that use IMessageSender Package Description com.microsoft.azure.servicebus -
-
Uses of IMessageSender in com.microsoft.azure.servicebus
Subinterfaces of IMessageSender in com.microsoft.azure.servicebus Modifier and Type Interface Description interface
IQueueClient
QueueClient can be used for all basic interactions with a Service Bus Queue.interface
ITopicClient
TopicClient can be used for all basic interactions with a Service Bus topic.Classes in com.microsoft.azure.servicebus that implement IMessageSender Modifier and Type Class Description class
QueueClient
class
TopicClient
The topic client that interacts with service bus topic.Methods in com.microsoft.azure.servicebus that return IMessageSender Modifier and Type Method Description static IMessageSender
ClientFactory. createMessageSenderFromConnectionString(String amqpConnectionString)
Create message sender from service bus connection string with Shared Access Signaturesstatic IMessageSender
ClientFactory. createMessageSenderFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder)
Create message sender from ConnectionStringBuilderstatic IMessageSender
ClientFactory. createMessageSenderFromEntityPath(MessagingFactory messagingFactory, String entityPath)
Creates a message sender to the entity.static IMessageSender
ClientFactory. createMessageSenderFromEntityPath(String namespaceName, String entityPath, ClientSettings clientSettings)
Creates a message sender to the entity using the client settings.static IMessageSender
ClientFactory. createMessageSenderFromEntityPath(URI namespaceEndpointURI, String entityPath, ClientSettings clientSettings)
Creates a message sender to the entity using the client settings.static IMessageSender
ClientFactory. createTransferMessageSenderFromEntityPath(MessagingFactory messagingFactory, String entityPath, String viaEntityPath)
Creates a transfer message sender.Methods in com.microsoft.azure.servicebus that return types with arguments of type IMessageSender Modifier and Type Method Description static CompletableFuture<IMessageSender>
ClientFactory. createMessageSenderFromConnectionStringAsync(String amqpConnectionString)
Create message sender asynchronously from connection string with Shared Access Signaturesstatic CompletableFuture<IMessageSender>
ClientFactory. createMessageSenderFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder)
Create message sender asynchronously from ConnectionStringBuilderstatic CompletableFuture<IMessageSender>
ClientFactory. createMessageSenderFromEntityPathAsync(MessagingFactory messagingFactory, String entityPath)
Creates a message sender asynchronously to the entity using theMessagingFactory
static CompletableFuture<IMessageSender>
ClientFactory. createMessageSenderFromEntityPathAsync(String namespaceName, String entityPath, ClientSettings clientSettings)
Creates a message sender asynchronously to the entity using the client settings.static CompletableFuture<IMessageSender>
ClientFactory. createMessageSenderFromEntityPathAsync(URI namespaceEndpointURI, String entityPath, ClientSettings clientSettings)
Creates a message sender asynchronously to the entity using the client settings.static CompletableFuture<IMessageSender>
ClientFactory. createTransferMessageSenderFromEntityPathAsync(MessagingFactory messagingFactory, String entityPath, String viaEntityPath)
Creates a transfer message sender asynchronously.
-