Uses of Class
com.microsoft.azure.servicebus.primitives.ConnectionStringBuilder
-
Packages that use ConnectionStringBuilder Package Description com.microsoft.azure.servicebus com.microsoft.azure.servicebus.management com.microsoft.azure.servicebus.primitives -
-
Uses of ConnectionStringBuilder in com.microsoft.azure.servicebus
Methods in com.microsoft.azure.servicebus with parameters of type ConnectionStringBuilder Modifier and Type Method Description static IMessageSession
ClientFactory. acceptSessionFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder, String sessionId)
Accept aIMessageSession
in defaultReceiveMode.PEEKLOCK
mode from service bus connection string builder with specified session id.static IMessageSession
ClientFactory. acceptSessionFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder, String sessionId, ReceiveMode receiveMode)
Accept aIMessageSession
from service bus connection string builder with specified session id.static CompletableFuture<IMessageSession>
ClientFactory. acceptSessionFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder, String sessionId)
Accept aIMessageSession
in defaultReceiveMode.PEEKLOCK
mode asynchronously from service bus connection string builder with specified session id.static CompletableFuture<IMessageSession>
ClientFactory. acceptSessionFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder, String sessionId, ReceiveMode receiveMode)
Accept aIMessageSession
asynchronously from service bus connection string builder with specified session id.static IMessageReceiver
ClientFactory. createMessageReceiverFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder)
CreateIMessageReceiver
in defaultReceiveMode.PEEKLOCK
mode from ConnectionStringBuilderstatic IMessageReceiver
ClientFactory. createMessageReceiverFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder, ReceiveMode receiveMode)
CreateIMessageReceiver
from ConnectionStringBuilderstatic CompletableFuture<IMessageReceiver>
ClientFactory. createMessageReceiverFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder)
CreateIMessageReceiver
in defaultReceiveMode.PEEKLOCK
mode asynchronously from ConnectionStringBuilderstatic CompletableFuture<IMessageReceiver>
ClientFactory. createMessageReceiverFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder, ReceiveMode receiveMode)
CreateIMessageReceiver
asynchronously from ConnectionStringBuilderstatic IMessageSender
ClientFactory. createMessageSenderFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder)
Create message sender from ConnectionStringBuilderstatic CompletableFuture<IMessageSender>
ClientFactory. createMessageSenderFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder)
Create message sender asynchronously from ConnectionStringBuilderConstructors in com.microsoft.azure.servicebus with parameters of type ConnectionStringBuilder Constructor Description QueueClient(ConnectionStringBuilder amqpConnectionStringBuilder, ReceiveMode receiveMode)
SubscriptionClient(ConnectionStringBuilder amqpConnectionStringBuilder, ReceiveMode receiveMode)
TopicClient(ConnectionStringBuilder amqpConnectionStringBuilder)
-
Uses of ConnectionStringBuilder in com.microsoft.azure.servicebus.management
Constructors in com.microsoft.azure.servicebus.management with parameters of type ConnectionStringBuilder Constructor Description ManagementClient(ConnectionStringBuilder connectionStringBuilder)
ManagementClientAsync(ConnectionStringBuilder connectionStringBuilder)
Creates a newManagementClientAsync
. -
Uses of ConnectionStringBuilder in com.microsoft.azure.servicebus.primitives
Methods in com.microsoft.azure.servicebus.primitives that return ConnectionStringBuilder Modifier and Type Method Description ConnectionStringBuilder
ConnectionStringBuilder. setTransportType(TransportType transportType)
Set the TransportType value in the Connection String.Methods in com.microsoft.azure.servicebus.primitives with parameters of type ConnectionStringBuilder Modifier and Type Method Description static MessagingFactory
MessagingFactory. createFromConnectionStringBuilder(ConnectionStringBuilder builder)
Creates an instance of MessagingFactory from the given connection string builder.static CompletableFuture<MessagingFactory>
MessagingFactory. createFromConnectionStringBuilderAsync(ConnectionStringBuilder builder)
Creates an instance of MessagingFactory from the given connection string builder.static ClientSettings
Util. getClientSettingsFromConnectionStringBuilder(ConnectionStringBuilder builder)
-