Uses of Class
com.microsoft.azure.servicebus.primitives.MessagingFactory
-
Packages that use MessagingFactory Package Description com.microsoft.azure.servicebus com.microsoft.azure.servicebus.primitives -
-
Uses of MessagingFactory in com.microsoft.azure.servicebus
Methods in com.microsoft.azure.servicebus with parameters of type MessagingFactory Modifier and Type Method Description static IMessageSession
ClientFactory. acceptSessionFromEntityPath(MessagingFactory messagingFactory, String entityPath, String sessionId)
Accept aIMessageSession
from service bus using the client settings with specified session id.static IMessageSession
ClientFactory. acceptSessionFromEntityPath(MessagingFactory messagingFactory, String entityPath, String sessionId, ReceiveMode receiveMode)
Accept aIMessageSession
from service bus using the client settings with specified session id.static CompletableFuture<IMessageSession>
ClientFactory. acceptSessionFromEntityPathAsync(MessagingFactory messagingFactory, String entityPath, String sessionId)
Asynchronously accepts a session from service bus using the client settings.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 IMessageReceiver
ClientFactory. createMessageReceiverFromEntityPath(MessagingFactory messagingFactory, String entityPath)
Creates a message receiver to the entity.static IMessageReceiver
ClientFactory. createMessageReceiverFromEntityPath(MessagingFactory messagingFactory, String entityPath, ReceiveMode receiveMode)
Creates a message receiver to the entity.static CompletableFuture<IMessageReceiver>
ClientFactory. createMessageReceiverFromEntityPathAsync(MessagingFactory messagingFactory, String entityPath)
Asynchronously creates a new message receiver to the entity on the messagingFactory.static CompletableFuture<IMessageReceiver>
ClientFactory. createMessageReceiverFromEntityPathAsync(MessagingFactory messagingFactory, String entityPath, ReceiveMode receiveMode)
Asynchronously creates a new message receiver to the entity on the messagingFactory.static IMessageSender
ClientFactory. createMessageSenderFromEntityPath(MessagingFactory messagingFactory, String entityPath)
Creates a message sender to the entity.static CompletableFuture<IMessageSender>
ClientFactory. createMessageSenderFromEntityPathAsync(MessagingFactory messagingFactory, String entityPath)
Creates a message sender asynchronously to the entity using theMessagingFactory
static IMessageSender
ClientFactory. createTransferMessageSenderFromEntityPath(MessagingFactory messagingFactory, String entityPath, String viaEntityPath)
Creates a transfer message sender.static CompletableFuture<IMessageSender>
ClientFactory. createTransferMessageSenderFromEntityPathAsync(MessagingFactory messagingFactory, String entityPath, String viaEntityPath)
Creates a transfer message sender asynchronously.Constructors in com.microsoft.azure.servicebus with parameters of type MessagingFactory Constructor Description TransactionContext(ByteBuffer txnId, MessagingFactory messagingFactory)
-
Uses of MessagingFactory in com.microsoft.azure.servicebus.primitives
Methods in com.microsoft.azure.servicebus.primitives that return MessagingFactory Modifier and Type Method Description static MessagingFactory
MessagingFactory. createFromConnectionString(String connectionString)
Creates an instance of MessagingFactory from the given connection string.static MessagingFactory
MessagingFactory. createFromConnectionStringBuilder(ConnectionStringBuilder builder)
Creates an instance of MessagingFactory from the given connection string builder.static MessagingFactory
MessagingFactory. createFromNamespaceEndpointURI(URI namespaceEndpointURI, ClientSettings clientSettings)
Creates a messaging factory instance from namesapce endpoint URI and client settingsstatic MessagingFactory
MessagingFactory. createFromNamespaceName(String sbNamespaceName, ClientSettings clientSettings)
Creates a messaging factory instance from namesapce name and client settingsMethods in com.microsoft.azure.servicebus.primitives that return types with arguments of type MessagingFactory Modifier and Type Method Description static CompletableFuture<MessagingFactory>
MessagingFactory. createFromConnectionStringAsync(String connectionString)
Creates an instance of MessagingFactory from the given connection string.static CompletableFuture<MessagingFactory>
MessagingFactory. createFromConnectionStringBuilderAsync(ConnectionStringBuilder builder)
Creates an instance of MessagingFactory from the given connection string builder.static CompletableFuture<MessagingFactory>
MessagingFactory. createFromNamespaceEndpointURIAsyc(URI namespaceEndpointURI, ClientSettings clientSettings)
Deprecated.Deprecating as spelling is wrong.static CompletableFuture<MessagingFactory>
MessagingFactory. createFromNamespaceEndpointURIAsync(URI namespaceEndpointURI, ClientSettings clientSettings)
Creates a messaging factory instance from namesapce endpoint URI and client settingsstatic CompletableFuture<MessagingFactory>
MessagingFactory. createFromNamespaceNameAsyc(String sbNamespaceName, ClientSettings clientSettings)
Deprecated.Deprecating as spelling is wrong.static CompletableFuture<MessagingFactory>
MessagingFactory. createFromNamespaceNameAsync(String sbNamespaceName, ClientSettings clientSettings)
Creates a messaging factory instance from namesapce name and client settingsMethods in com.microsoft.azure.servicebus.primitives with parameters of type MessagingFactory Modifier and Type Method Description static CompletableFuture<CoreMessageReceiver>
CoreMessageReceiver. create(MessagingFactory factory, String name, String recvPath, int prefetchCount, SettleModePair settleModePair)
Deprecated.static CompletableFuture<CoreMessageReceiver>
CoreMessageReceiver. create(MessagingFactory factory, String name, String recvPath, int prefetchCount, SettleModePair settleModePair, MessagingEntityType entityType)
static CompletableFuture<CoreMessageReceiver>
CoreMessageReceiver. create(MessagingFactory factory, String name, String recvPath, String sessionId, boolean isBrowsableSession, int prefetchCount, SettleModePair settleModePair)
Deprecated.static CompletableFuture<CoreMessageReceiver>
CoreMessageReceiver. create(MessagingFactory factory, String name, String recvPath, String sessionId, boolean isBrowsableSession, int prefetchCount, SettleModePair settleModePair, MessagingEntityType entityType)
static CompletableFuture<CoreMessageSender>
CoreMessageSender. create(MessagingFactory factory, String clientId, String senderPath, String transferDestinationPath)
Deprecated.static CompletableFuture<CoreMessageSender>
CoreMessageSender. create(MessagingFactory factory, String clientId, String senderPath, String transferDestinationPath, MessagingEntityType entityType)
static CompletableFuture<MiscRequestResponseOperationHandler>
MiscRequestResponseOperationHandler. create(MessagingFactory factory, String entityPath)
Deprecated.static CompletableFuture<MiscRequestResponseOperationHandler>
MiscRequestResponseOperationHandler. create(MessagingFactory factory, String entityPath, MessagingEntityType entityType)
-