Class RetryConfig
Configure automatic retries on requests to CDF.
Inherited Members
Namespace: Cognite.Extractor.Utils
Assembly: ExtractorUtils.dll
Syntax
public class RetryConfig
Properties
| Edit this page View SourceMaxDelay
Max delay in ms between each retry. Base delay is calculated according to 125*2^retry ms. If less than 0, there is no maximum.
Declaration
public int MaxDelay { get; set; }
Property Value
Type | Description |
---|---|
int |
MaxRetries
Maximum number of retries. Less than 0 retries forever.
Declaration
public int MaxRetries { get; set; }
Property Value
Type | Description |
---|---|
int |
Timeout
Timeout in milliseconds for each individual try. Less than or equal to zero for no timeout.
Declaration
public int Timeout { get; set; }
Property Value
Type | Description |
---|---|
int |