Show / Hide Table of Contents

Class RetryConfig

Configure automatic retries on requests to CDF.

Inheritance
object
RetryConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Cognite.Extractor.Utils
Assembly: ExtractorUtils.dll
Syntax
public class RetryConfig

Properties

| Edit this page View Source

MaxDelay

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
| Edit this page View Source

MaxRetries

Maximum number of retries. Less than 0 retries forever.

Declaration
public int MaxRetries { get; set; }
Property Value
Type Description
int
| Edit this page View Source

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

Extension Methods

DataModelUtils.GetOrCreateResourcesAsync<T, T2>(T2, IEnumerable<InstanceIdentifier>, Func<IEnumerable<InstanceIdentifier>, IEnumerable<SourcedNodeWrite<T>>>, Func<IEnumerable<SourcedNodeWrite<T>>, SanitationMode, (IEnumerable<SourcedNodeWrite<T>>, IEnumerable<CogniteError<SourcedNodeWrite<T>>>)>, int, int, RetryMode, SanitationMode, CancellationToken)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX