Class RetryPolicyConfiguration
- Namespace
- FishMMO.Database
- Assembly
- FishMMO-DB.dll
Configuration for handling database connection retries.
[Serializable]
public class RetryPolicyConfiguration
- Inheritance
-
RetryPolicyConfiguration
- Inherited Members
Properties
BaseDelayMs
Gets or sets the base delay in milliseconds between retries.
public int BaseDelayMs { get; set; }
Property Value
MaxJitterMs
Gets or sets the maximum random jitter in milliseconds added to retry delays.
public int MaxJitterMs { get; set; }
Property Value
MaxRetries
Gets or sets the maximum retry attempts for transient failures.
public int MaxRetries { get; set; }