static IMessageSession |
ClientFactory.acceptSessionFromConnectionString(String amqpConnectionString,
String sessionId,
ReceiveMode receiveMode) |
Accept a IMessageSession from service bus connection string with specified session id.
|
static CompletableFuture<IMessageSession> |
ClientFactory.acceptSessionFromConnectionStringAsync(String amqpConnectionString,
String sessionId,
ReceiveMode receiveMode) |
Accept a IMessageSession asynchronously from service bus connection string with specified session id.
|
static IMessageSession |
ClientFactory.acceptSessionFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder,
String sessionId,
ReceiveMode receiveMode) |
Accept a IMessageSession from service bus connection string builder with specified session id.
|
static CompletableFuture<IMessageSession> |
ClientFactory.acceptSessionFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder,
String sessionId,
ReceiveMode receiveMode) |
Accept a IMessageSession asynchronously from service bus connection string builder with specified session id.
|
static IMessageSession |
ClientFactory.acceptSessionFromEntityPath(MessagingFactory messagingFactory,
String entityPath,
String sessionId,
ReceiveMode receiveMode) |
Accept a IMessageSession from service bus using the client settings with specified session id.
|
static IMessageSession |
ClientFactory.acceptSessionFromEntityPath(String namespaceName,
String entityPath,
String sessionId,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Accept a IMessageSession from service bus using the client settings with specified session id.
|
static IMessageSession |
ClientFactory.acceptSessionFromEntityPath(URI namespaceEndpointURI,
String entityPath,
String sessionId,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Accept a IMessageSession from service bus using the client settings with specified session id.
|
static CompletableFuture<IMessageSession> |
ClientFactory.acceptSessionFromEntityPathAsync(MessagingFactory messagingFactory,
String entityPath,
String sessionId,
ReceiveMode receiveMode) |
Asynchronously accepts a session from service bus using the client settings.
|
static CompletableFuture<IMessageSession> |
ClientFactory.acceptSessionFromEntityPathAsync(String namespaceName,
String entityPath,
String sessionId,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Asynchronously accepts a session from service bus using the client settings.
|
static CompletableFuture<IMessageSession> |
ClientFactory.acceptSessionFromEntityPathAsync(URI namespaceEndpointURI,
String entityPath,
String sessionId,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Asynchronously accepts a session from service bus using the client settings.
|
static IMessageReceiver |
ClientFactory.createMessageReceiverFromConnectionString(String amqpConnectionString,
ReceiveMode receiveMode) |
|
static CompletableFuture<IMessageReceiver> |
ClientFactory.createMessageReceiverFromConnectionStringAsync(String amqpConnectionString,
ReceiveMode receiveMode) |
|
static IMessageReceiver |
ClientFactory.createMessageReceiverFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder,
ReceiveMode receiveMode) |
|
static CompletableFuture<IMessageReceiver> |
ClientFactory.createMessageReceiverFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder,
ReceiveMode receiveMode) |
|
static IMessageReceiver |
ClientFactory.createMessageReceiverFromEntityPath(MessagingFactory messagingFactory,
String entityPath,
ReceiveMode receiveMode) |
Creates a message receiver to the entity.
|
static IMessageReceiver |
ClientFactory.createMessageReceiverFromEntityPath(String namespaceName,
String entityPath,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Creates a message receiver to the entity using the client settings.
|
static IMessageReceiver |
ClientFactory.createMessageReceiverFromEntityPath(URI namespaceEndpointURI,
String entityPath,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Creates a message receiver to the entity using the client settings.
|
static CompletableFuture<IMessageReceiver> |
ClientFactory.createMessageReceiverFromEntityPathAsync(MessagingFactory messagingFactory,
String entityPath,
ReceiveMode receiveMode) |
Asynchronously creates a new message receiver to the entity on the messagingFactory.
|
static CompletableFuture<IMessageReceiver> |
ClientFactory.createMessageReceiverFromEntityPathAsync(String namespaceName,
String entityPath,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Asynchronously creates a message receiver to the entity using the client settings
|
static CompletableFuture<IMessageReceiver> |
ClientFactory.createMessageReceiverFromEntityPathAsync(URI namespaceEndpointURI,
String entityPath,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Asynchronously creates a message receiver to the entity using the client settings
|