Class RetrySettings
Retry configuration for the failed instance.
If neither MaxTotalRetries nor MaxPerInstanceRetries are set (or if they are equal to 0), the instances will not retry.
If both MaxTotalRetries and MaxPerInstanceRetries are set, then the most restrictive applies.
Inherited Members
Namespace: QarnotSDK
Assembly: QarnotSDK.dll
Syntax
public class RetrySettings
Properties
MaxPerInstanceRetries
Maximum number of retries for each task instance. Default to null (equivalent to 0, meaning no limitation per instance).
Declaration
public uint? MaxPerInstanceRetries { get; set; }
Property Value
| Type | Description |
|---|---|
| uint? |
Examples
12
MaxTotalRetries
Maximum total number of retries for the whole task. Default to null (equivalent to 0, meaning no global limitation).
Declaration
public uint? MaxTotalRetries { get; set; }
Property Value
| Type | Description |
|---|---|
| uint? |
Examples
12