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.Unstable.Configuration
Assembly: ExtractorUtils.dll
Syntax
public class RetryConfig

Properties

| Edit this page View Source

MaxBackoff

Max backoff 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 string MaxBackoff { get; set; }
Property Value
Type Description
string
| Edit this page View Source

MaxBackoffValue

Value of the max-backoff parameter.

Declaration
public TimeSpanWrapper MaxBackoffValue { get; }
Property Value
Type Description
TimeSpanWrapper
| 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 string Timeout { get; set; }
Property Value
Type Description
string
| Edit this page View Source

TimeoutValue

Value of the timeout parameter.

Declaration
public TimeSpanWrapper TimeoutValue { get; }
Property Value
Type Description
TimeSpanWrapper

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