Package | Description |
---|---|
com.microsoft.azure.servicebus |
Modifier and Type | Method and Description |
---|---|
ReceiveMode |
SubscriptionClient.getReceiveMode() |
ReceiveMode |
IQueueClient.getReceiveMode()
Gets the
ReceiveMode of the current receiver |
ReceiveMode |
ISubscriptionClient.getReceiveMode()
Gets the
ReceiveMode of the current receiver |
ReceiveMode |
QueueClient.getReceiveMode() |
ReceiveMode |
IMessageReceiver.getReceiveMode()
Get current receiver's
ReceiveMode . |
static ReceiveMode |
ReceiveMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReceiveMode[] |
ReceiveMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
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)
Create
IMessageReceiver in default PEEKLOCK mode from service bus connection string with Shared Access Signatures |
static CompletableFuture<IMessageReceiver> |
ClientFactory.createMessageReceiverFromConnectionStringAsync(String amqpConnectionString,
ReceiveMode receiveMode)
Create
IMessageReceiver in default PEEKLOCK mode asynchronously from connection string with Shared Access Signatures |
static IMessageReceiver |
ClientFactory.createMessageReceiverFromConnectionStringBuilder(ConnectionStringBuilder amqpConnectionStringBuilder,
ReceiveMode receiveMode)
Create
IMessageReceiver from ConnectionStringBuilder |
static CompletableFuture<IMessageReceiver> |
ClientFactory.createMessageReceiverFromConnectionStringBuilderAsync(ConnectionStringBuilder amqpConnectionStringBuilder,
ReceiveMode receiveMode)
Create
IMessageReceiver asynchronously from ConnectionStringBuilder |
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
|
Constructor and Description |
---|
QueueClient(ConnectionStringBuilder amqpConnectionStringBuilder,
ReceiveMode receiveMode) |
QueueClient(String namespace,
String queuePath,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
QueueClient(URI namespaceEndpointURI,
String queuePath,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
SubscriptionClient(ConnectionStringBuilder amqpConnectionStringBuilder,
ReceiveMode receiveMode) |
SubscriptionClient(String namespace,
String subscriptionPath,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
SubscriptionClient(URI namespaceEndpointURI,
String subscriptionPath,
ClientSettings clientSettings,
ReceiveMode receiveMode) |
Copyright © 2019 Microsoft Corporation. All rights reserved.