@@ -23,7 +23,7 @@ public QoSOptions(FileQoSOptions from)
23
23
public QoSOptions (
24
24
int exceptionsAllowedBeforeBreaking ,
25
25
int durationOfBreak ,
26
- int timeoutValue ,
26
+ int timeoutValue ,
27
27
string key )
28
28
{
29
29
DurationOfBreak = durationOfBreak ;
@@ -32,6 +32,36 @@ public QoSOptions(
32
32
TimeoutValue = timeoutValue ;
33
33
}
34
34
35
+ public QoSOptions (
36
+ int exceptionsAllowedBeforeBreaking ,
37
+ int durationOfBreak ,
38
+ double failureRatio ,
39
+ int timeoutValue ,
40
+ string key )
41
+ {
42
+ DurationOfBreak = durationOfBreak ;
43
+ ExceptionsAllowedBeforeBreaking = exceptionsAllowedBeforeBreaking ;
44
+ Key = key ;
45
+ TimeoutValue = timeoutValue ;
46
+ FailureRatio = failureRatio ;
47
+ }
48
+
49
+ public QoSOptions (
50
+ int exceptionsAllowedBeforeBreaking ,
51
+ int durationOfBreak ,
52
+ double failureRatio ,
53
+ int samplingDuration ,
54
+ int timeoutValue ,
55
+ string key )
56
+ {
57
+ DurationOfBreak = durationOfBreak ;
58
+ ExceptionsAllowedBeforeBreaking = exceptionsAllowedBeforeBreaking ;
59
+ Key = key ;
60
+ TimeoutValue = timeoutValue ;
61
+ FailureRatio = failureRatio ;
62
+ SamplingDuration = samplingDuration ;
63
+ }
64
+
35
65
/// <summary>How long the circuit should stay open before resetting in milliseconds.</summary>
36
66
/// <remarks>If using Polly version 8 or above, this value must be 500 (0.5 sec) or greater.</remarks>
37
67
/// <value>An <see cref="int"/> value (milliseconds).</value>
@@ -50,6 +80,22 @@ public QoSOptions(
50
80
/// </value>
51
81
public int ExceptionsAllowedBeforeBreaking { get ; }
52
82
83
+ /// <summary>
84
+ /// The failure-success ratio that will cause the circuit to break/open.
85
+ /// </summary>
86
+ /// <value>
87
+ /// An <see cref="double"/> 0.8 means 80% failed of all sampled executions.
88
+ /// </value>
89
+ public double FailureRatio { get ; } = .8 ;
90
+
91
+ /// <summary>
92
+ /// The time period over which the failure-success ratio is calculated (in seconds).
93
+ /// </summary>
94
+ /// <value>
95
+ /// An <see cref="int"/> Time period in seconds, 10 means 10 seconds.
96
+ /// </value>
97
+ public int SamplingDuration { get ; } = 10 ;
98
+
53
99
public string Key { get ; }
54
100
55
101
/// <summary>
0 commit comments