You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Options for resilient pipeline of policies assigned to a particular endpoint. It is using three chained layers in this order (from the outermost to the innermost):
/// Adds a standard hedging handler which wraps the execution of the request with a standard hedging mechanism.
@@ -28,12 +30,14 @@ public static partial class HttpClientBuilderExtensions
28
30
/// A <see cref="IStandardHedgingHandlerBuilder"/> builder that can be used to configure the standard hedging behavior.
29
31
/// </returns>
30
32
/// <remarks>
31
-
/// The standard hedging uses a pipeline pool of circuit breakers to ensure that unhealthy endpoints are not hedged against.
33
+
/// The standard hedging uses a pool of circuit breakers to ensure that unhealthy endpoints are not hedged against.
32
34
/// By default, the selection from pool is based on the URL Authority (scheme + host + port).
33
-
///
34
-
/// It is recommended that you configure the way the pipelines are selected by calling 'SelectPipelineByAuthority' extensions on top of returned <see cref="IStandardHedgingHandlerBuilder"/>.
35
-
///
36
-
/// See <see cref="HttpStandardHedgingResilienceOptions"/> for more details about the policies inside the pipeline.
35
+
/// It is recommended that you configure the way the strategies are selected by calling
@@ -55,45 +59,86 @@ public static IStandardHedgingHandlerBuilder AddStandardHedgingHandler(this IHtt
55
59
/// A <see cref="IStandardHedgingHandlerBuilder"/> builder that can be used to configure the standard hedging behavior.
56
60
/// </returns>
57
61
/// <remarks>
58
-
/// The standard hedging uses a pipeline pool of circuit breakers to ensure that unhealthy endpoints are not hedged against.
62
+
/// The standard hedging uses a pool of circuit breakers to ensure that unhealthy endpoints are not hedged against.
59
63
/// By default, the selection from pool is based on the URL Authority (scheme + host + port).
60
-
///
61
-
/// It is recommended that you configure the way the pipelines are selected by calling 'SelectPipelineByAuthority' extensions on top of returned <see cref="IStandardHedgingHandlerBuilder"/>.
62
-
///
63
-
/// See <see cref="HttpStandardHedgingResilienceOptions"/> for more details about the policies inside the pipeline.
64
+
/// It is recommended that you configure the way the strategies are selected by calling
0 commit comments