Show / Hide Table of Contents

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.

Inheritance
object
RetrySettings
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
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

In this article
Back to top Generated by DocFX