Show / Hide Table of Contents

Class QueueProcessorOptions

Provides options input for creatingQueueProcessor.

Inheritance
System.Object
QueueProcessorOptions
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll
Syntax
public class QueueProcessorOptions

Properties

Logger

Gets the Microsoft.Extensions.Logging.ILogger.

Declaration
public Microsoft.Extensions.Logging.ILogger Logger { get; }
Property Value
Microsoft.Extensions.Logging.ILogger

Options

Gets the queue configuration.

Declaration
public Microsoft.Azure.WebJobs.Host.QueuesOptions Options { get; }
Property Value
QueuesOptions

PoisonQueue

Gets the queue to move messages to when unable to process a message after the maximum dequeue count has been exceeded. May be null.

Declaration
public Azure.Storage.Queues.QueueClient PoisonQueue { get; }
Property Value
Azure.Storage.Queues.QueueClient

Queue

Gets the queue the QueueProcessor will operate on.

Declaration
public Azure.Storage.Queues.QueueClient Queue { get; }
Property Value
Azure.Storage.Queues.QueueClient

Back to top Azure SDK for .NET