MessagingProvider.CreateMessageProcessor Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateMessageProcessor(String, String) | |
CreateMessageProcessor(ServiceBusClient, String, ServiceBusProcessorOptions) |
Creates a MessageProcessor instance that will be used to process messages. |
CreateMessageProcessor(String, String)
- Source:
- MessagingProvider.cs
public virtual Microsoft.Azure.WebJobs.ServiceBus.MessageProcessor CreateMessageProcessor (string entityPath, string connectionString);
abstract member CreateMessageProcessor : string * string -> Microsoft.Azure.WebJobs.ServiceBus.MessageProcessor
override this.CreateMessageProcessor : string * string -> Microsoft.Azure.WebJobs.ServiceBus.MessageProcessor
Public Overridable Function CreateMessageProcessor (entityPath As String, connectionString As String) As MessageProcessor
Parameters
- entityPath
- String
- connectionString
- String
Returns
Applies to
CreateMessageProcessor(ServiceBusClient, String, ServiceBusProcessorOptions)
- Source:
- MessagingProvider.cs
Creates a MessageProcessor instance that will be used to process messages.
protected internal virtual Microsoft.Azure.WebJobs.ServiceBus.MessageProcessor CreateMessageProcessor (Azure.Messaging.ServiceBus.ServiceBusClient client, string entityPath, Azure.Messaging.ServiceBus.ServiceBusProcessorOptions options);
abstract member CreateMessageProcessor : Azure.Messaging.ServiceBus.ServiceBusClient * string * Azure.Messaging.ServiceBus.ServiceBusProcessorOptions -> Microsoft.Azure.WebJobs.ServiceBus.MessageProcessor
override this.CreateMessageProcessor : Azure.Messaging.ServiceBus.ServiceBusClient * string * Azure.Messaging.ServiceBus.ServiceBusProcessorOptions -> Microsoft.Azure.WebJobs.ServiceBus.MessageProcessor
Protected Friend Overridable Function CreateMessageProcessor (client As ServiceBusClient, entityPath As String, options As ServiceBusProcessorOptions) As MessageProcessor
Parameters
- client
- ServiceBusClient
The client that is being used to communicate with the service.
- entityPath
- String
The path to the Service Bus entity that is being received from.
- options
- ServiceBusProcessorOptions
The set of options to use for configuring the processor. These options are computed from the ServiceBusOptions passed to the MessagingProvider constructor.
Returns
A message processor that will be used by the extension.
Applies to
Azure SDK for .NET