Table of Contents

Class TaskActivityDispatcherSettings

Namespace
DurableTask.Core.Settings
Assembly
DurableTask.Core.dll

Settings to configure the Task Activity Dispatcher

public class TaskActivityDispatcherSettings
Inheritance
TaskActivityDispatcherSettings
Inherited Members

Constructors

TaskActivityDispatcherSettings()

Creates a new instance of the TaskActivityDispatcherSettings with the default settings

public TaskActivityDispatcherSettings()

Properties

DispatcherCount

How many dispatchers to create. Default is 1.

public int DispatcherCount { get; set; }

Property Value

int

MaxConcurrentActivities

How many activities to process concurrently. Default is 10.

public int MaxConcurrentActivities { get; set; }

Property Value

int

NonTransientErrorBackOffSecs

Time in seconds to wait before retrying on a non-transient error. Default is 120s.

public int NonTransientErrorBackOffSecs { get; set; }

Property Value

int

TransientErrorBackOffSecs

Time in seconds to wait before retrying on a transient error (e.g. communication exception). Default is 10s.

public int TransientErrorBackOffSecs { get; set; }

Property Value

int