/// <summary> /// <para> Builds a <see cref="Policy"/> that will function like a Circuit Breaker.</para> /// <para>The circuit will break after <paramref name="exceptionsAllowedBeforeBreaking"/> /// exceptions that are handled by this policy are raised. </para> /// <para>The circuit will stay broken for the <paramref name="durationOfBreak"/>. Any attempt to execute this policy /// while the circuit is broken, will immediately throw a <see cref="BrokenCircuitException"/> containing the exception /// that broke the circuit. /// </para> /// <para>If the first action after the break duration period results in a handled exception, the circuit will break /// again for another <paramref name="durationOfBreak"/>; if no exception is thrown, the circuit will reset. /// </para> /// </summary> /// <param name="policyBuilder">The policy builder.</param> /// <param name="exceptionsAllowedBeforeBreaking">The number of exceptions that are allowed before opening the circuit.</param> /// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param> /// <param name="onBreak">The action to call when the circuit transitions to an <see cref="CircuitState.Open"/> state.</param> /// <param name="onReset">The action to call when the circuit resets to a <see cref="CircuitState.Closed"/> state.</param> /// <param name="onHalfOpen">The action to call when the circuit transitions to <see cref="CircuitState.HalfOpen"/> state, ready to try action executions again. </param> /// <returns>The policy instance.</returns> /// <remarks>(see "Release It!" by Michael T. Nygard fi)</remarks> /// <exception cref="System.ArgumentOutOfRangeException">exceptionsAllowedBeforeBreaking;Value must be greater than zero.</exception> /// <exception cref="ArgumentNullException">onBreak</exception> /// <exception cref="ArgumentNullException">onReset</exception> /// <exception cref="ArgumentNullException">onHalfOpen</exception> public static CircuitBreakerPolicy CircuitBreaker(this PolicyBuilder policyBuilder, int exceptionsAllowedBeforeBreaking, TimeSpan durationOfBreak, Action <Exception, TimeSpan, Context> onBreak, Action <Context> onReset, Action onHalfOpen) { if (exceptionsAllowedBeforeBreaking <= 0) { throw new ArgumentOutOfRangeException("exceptionsAllowedBeforeBreaking", "Value must be greater than zero."); } if (durationOfBreak < TimeSpan.Zero) { throw new ArgumentOutOfRangeException("durationOfBreak", "Value must be greater than zero."); } if (onBreak == null) { throw new ArgumentNullException("onBreak"); } if (onReset == null) { throw new ArgumentNullException("onReset"); } if (onHalfOpen == null) { throw new ArgumentNullException("onHalfOpen"); } var breakerController = new ConsecutiveCountCircuitController(exceptionsAllowedBeforeBreaking, durationOfBreak, onBreak, onReset, onHalfOpen); return(new CircuitBreakerPolicy( (action, context) => CircuitBreakerEngine.Implementation(action, context, policyBuilder.ExceptionPredicates, breakerController), policyBuilder.ExceptionPredicates, breakerController )); }
/// <summary> /// <para> Builds a <see cref="Policy" /> that will function like a Circuit Breaker.</para> /// <para>The circuit will break if, within any timeslice of duration <paramref name="samplingDuration" />, the proportion of actions resulting in a handled exception or result exceeds <paramref name="failureThreshold" />, provided also that the number of actions through the circuit in the timeslice is at least <paramref name="minimumThroughput" />. </para> /// <para>The circuit will stay broken for the <paramref name="durationOfBreak" />. Any attempt to execute this policy /// while the circuit is broken, will immediately throw a <see cref="BrokenCircuitException" /> containing the exception or result /// that broke the circuit. /// </para> /// <para>If the first action after the break duration period results in a handled exception or result, the circuit will break /// again for another <paramref name="durationOfBreak" />; if no exception or handled result is encountered, the circuit will reset. /// </para> /// </summary> /// <typeparam name="TResult">The return type of delegates which may be executed through the policy.</typeparam> /// <param name="policyBuilder">The policy builder.</param> /// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure.</param> /// <param name="samplingDuration">The duration of the timeslice over which failure ratios are assessed.</param> /// <param name="minimumThroughput">The minimum throughput: this many actions or more must pass through the circuit in the timeslice, for statistics to be considered significant and the circuit-breaker to come into action.</param> /// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param> /// <param name="onBreak">The action to call when the circuit transitions to an <see cref="CircuitState.Open" /> state.</param> /// <param name="onReset">The action to call when the circuit resets to a <see cref="CircuitState.Closed" /> state.</param> /// <param name="onHalfOpen">The action to call when the circuit transitions to <see cref="CircuitState.HalfOpen" /> state, ready to try action executions again.</param> /// <returns>The policy instance.</returns> /// <exception cref="ArgumentOutOfRangeException">failureThreshold;Value must be greater than zero</exception> /// <exception cref="ArgumentOutOfRangeException">failureThreshold;Value must be less than or equal to one</exception> /// <exception cref="ArgumentOutOfRangeException">samplingDuration;Value must be equal to or greater than the minimum resolution of the CircuitBreaker timer</exception> /// <exception cref="ArgumentOutOfRangeException">minimumThroughput;Value must be greater than one</exception> /// <exception cref="ArgumentOutOfRangeException">durationOfBreak;Value must be greater than zero</exception> /// <exception cref="ArgumentNullException">onBreak</exception> /// <exception cref="ArgumentNullException">onReset</exception> /// <exception cref="ArgumentNullException">onHalfOpen</exception> /// <remarks>(see "Release It!" by Michael T. Nygard fi)</remarks> public static CircuitBreakerPolicy <TResult> AdvancedCircuitBreaker <TResult>(this PolicyBuilder <TResult> policyBuilder, double failureThreshold, TimeSpan samplingDuration, int minimumThroughput, TimeSpan durationOfBreak, Action <DelegateResult <TResult>, CircuitState, TimeSpan, Context> onBreak, Action <Context> onReset, Action onHalfOpen) { var resolutionOfCircuit = TimeSpan.FromTicks(AdvancedCircuitController <EmptyStruct> .ResolutionOfCircuitTimer); if (failureThreshold <= 0) { throw new ArgumentOutOfRangeException("failureThreshold", "Value must be greater than zero."); } if (failureThreshold > 1) { throw new ArgumentOutOfRangeException("failureThreshold", "Value must be less than or equal to one."); } if (samplingDuration < resolutionOfCircuit) { throw new ArgumentOutOfRangeException("samplingDuration", String.Format("Value must be equal to or greater than {0} milliseconds. This is the minimum resolution of the CircuitBreaker timer.", resolutionOfCircuit.TotalMilliseconds)); } if (minimumThroughput <= 1) { throw new ArgumentOutOfRangeException("minimumThroughput", "Value must be greater than one."); } if (durationOfBreak < TimeSpan.Zero) { throw new ArgumentOutOfRangeException("durationOfBreak", "Value must be greater than zero."); } if (onBreak == null) { throw new ArgumentNullException("onBreak"); } if (onReset == null) { throw new ArgumentNullException("onReset"); } if (onHalfOpen == null) { throw new ArgumentNullException("onHalfOpen"); } var breakerController = new AdvancedCircuitController <TResult>( failureThreshold, samplingDuration, minimumThroughput, durationOfBreak, onBreak, onReset, onHalfOpen); return(new CircuitBreakerPolicy <TResult>( (action, context, cancellationToken) => CircuitBreakerEngine.Implementation( action, context, cancellationToken, policyBuilder.ExceptionPredicates, policyBuilder.ResultPredicates, breakerController), policyBuilder.ExceptionPredicates, policyBuilder.ResultPredicates, breakerController )); }
/// <summary> /// <para> Builds a <see cref="Policy"/> that will function like a Circuit Breaker.</para> /// <para>The circuit will break if <paramref name="handledEventsAllowedBeforeBreaking"/> /// exceptions or results that are handled by this policy are encountered consecutively. </para> /// <para>The circuit will stay broken for the <paramref name="durationOfBreak"/>. Any attempt to execute this policy /// while the circuit is broken, will immediately throw a <see cref="BrokenCircuitException"/> containing the exception or result /// that broke the circuit. /// </para> /// <para>If the first action after the break duration period results in a handled exception or result, the circuit will break /// again for another <paramref name="durationOfBreak"/>; if no exception or handled result is encountered, the circuit will reset. /// </para> /// </summary> /// <param name="policyBuilder">The policy builder.</param> /// <param name="handledEventsAllowedBeforeBreaking">The number of exceptions or handled results that are allowed before opening the circuit.</param> /// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param> /// <param name="onBreak">The action to call when the circuit transitions to an <see cref="CircuitState.Open"/> state.</param> /// <param name="onReset">The action to call when the circuit resets to a <see cref="CircuitState.Closed"/> state.</param> /// <param name="onHalfOpen">The action to call when the circuit transitions to <see cref="CircuitState.HalfOpen"/> state, ready to try action executions again. </param> /// <returns>The policy instance.</returns> /// <remarks>(see "Release It!" by Michael T. Nygard fi)</remarks> /// <exception cref="System.ArgumentOutOfRangeException">handledEventsAllowedBeforeBreaking;Value must be greater than zero.</exception> /// <exception cref="ArgumentNullException">onBreak</exception> /// <exception cref="ArgumentNullException">onReset</exception> /// <exception cref="ArgumentNullException">onHalfOpen</exception> public static CircuitBreakerPolicy <TResult> CircuitBreakerAsync <TResult>(this PolicyBuilder <TResult> policyBuilder, int handledEventsAllowedBeforeBreaking, TimeSpan durationOfBreak, Action <DelegateResult <TResult>, TimeSpan, Context> onBreak, Action <Context> onReset, Action onHalfOpen) { if (handledEventsAllowedBeforeBreaking <= 0) { throw new ArgumentOutOfRangeException("handledEventsAllowedBeforeBreaking", "Value must be greater than zero."); } if (durationOfBreak < TimeSpan.Zero) { throw new ArgumentOutOfRangeException("durationOfBreak", "Value must be greater than zero."); } if (onBreak == null) { throw new ArgumentNullException("onBreak"); } if (onReset == null) { throw new ArgumentNullException("onReset"); } if (onHalfOpen == null) { throw new ArgumentNullException("onHalfOpen"); } var breakerController = new ConsecutiveCountCircuitController <TResult>( handledEventsAllowedBeforeBreaking, durationOfBreak, onBreak, onReset, onHalfOpen); return(new CircuitBreakerPolicy <TResult>( (action, context, cancellationToken, continueOnCapturedContext) => CircuitBreakerEngine.ImplementationAsync( action, context, policyBuilder.ExceptionPredicates, policyBuilder.ResultPredicates, breakerController, cancellationToken, continueOnCapturedContext), policyBuilder.ExceptionPredicates, policyBuilder.ResultPredicates, breakerController )); }
/// <summary> /// <para> Builds a <see cref="Policy"/> that will function like a Circuit Breaker.</para> /// <para>The circuit will break if <paramref name="exceptionsAllowedBeforeBreaking"/> /// exceptions that are handled by this policy are raised consecutively. </para> /// <para>The circuit will stay broken for the <paramref name="durationOfBreak"/>. Any attempt to execute this policy /// while the circuit is broken, will immediately throw a <see cref="BrokenCircuitException"/> containing the exception /// that broke the circuit. /// </para> /// <para>If the first action after the break duration period results in a handled exception, the circuit will break /// again for another <paramref name="durationOfBreak"/>; if no exception is thrown, the circuit will reset. /// </para> /// </summary> /// <param name="policyBuilder">The policy builder.</param> /// <param name="exceptionsAllowedBeforeBreaking">The number of exceptions that are allowed before opening the circuit.</param> /// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param> /// <param name="onBreak">The action to call when the circuit transitions to an <see cref="CircuitState.Open"/> state.</param> /// <param name="onReset">The action to call when the circuit resets to a <see cref="CircuitState.Closed"/> state.</param> /// <param name="onHalfOpen">The action to call when the circuit transitions to <see cref="CircuitState.HalfOpen"/> state, ready to try action executions again. </param> /// <returns>The policy instance.</returns> /// <remarks>(see "Release It!" by Michael T. Nygard fi)</remarks> /// <exception cref="System.ArgumentOutOfRangeException">exceptionsAllowedBeforeBreaking;Value must be greater than zero.</exception> /// <exception cref="ArgumentNullException">onBreak</exception> /// <exception cref="ArgumentNullException">onReset</exception> /// <exception cref="ArgumentNullException">onHalfOpen</exception> public static CircuitBreakerPolicy CircuitBreakerAsync(this PolicyBuilder policyBuilder, int exceptionsAllowedBeforeBreaking, TimeSpan durationOfBreak, Action <Exception, TimeSpan, Context> onBreak, Action <Context> onReset, Action onHalfOpen) { if (exceptionsAllowedBeforeBreaking <= 0) { throw new ArgumentOutOfRangeException("exceptionsAllowedBeforeBreaking", "Value must be greater than zero."); } if (durationOfBreak < TimeSpan.Zero) { throw new ArgumentOutOfRangeException("durationOfBreak", "Value must be greater than zero."); } if (onBreak == null) { throw new ArgumentNullException("onBreak"); } if (onReset == null) { throw new ArgumentNullException("onReset"); } if (onHalfOpen == null) { throw new ArgumentNullException("onHalfOpen"); } var breakerController = new ConsecutiveCountCircuitController <EmptyStruct>( exceptionsAllowedBeforeBreaking, durationOfBreak, (outcome, timespan, context) => onBreak(outcome.Exception, timespan, context), onReset, onHalfOpen); return(new CircuitBreakerPolicy( (action, context, cancellationToken, continueOnCapturedContext) => CircuitBreakerEngine.ImplementationAsync( async ct => { await action(ct).ConfigureAwait(continueOnCapturedContext); return EmptyStruct.Instance; }, context, policyBuilder.ExceptionPredicates, PredicateHelper <EmptyStruct> .EmptyResultPredicates, breakerController, cancellationToken, continueOnCapturedContext), policyBuilder.ExceptionPredicates, breakerController )); }
/// <summary> /// <para> Builds a <see cref="Policy"/> that will function like a Circuit Breaker.</para> /// <para>The circuit will break if, within any timeslice of duration <paramref name="samplingDuration"/>, the proportion of actions resulting in a handled exception exceeds <paramref name="failureThreshold"/>, provided also that the number of actions through the circuit in the timeslice is at least <paramref name="minimumThroughput" />. </para> /// <para>The circuit will stay broken for the <paramref name="durationOfBreak" />. Any attempt to execute this policy /// while the circuit is broken, will immediately throw a <see cref="BrokenCircuitException" /> containing the exception /// that broke the circuit. /// </para> /// <para>If the first action after the break duration period results in a handled exception, the circuit will break /// again for another <paramref name="durationOfBreak" />; if no exception is thrown, the circuit will reset. /// </para> /// </summary> /// <param name="policyBuilder">The policy builder.</param> /// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure.</param> /// <param name="samplingDuration">The duration of the timeslice over which failure ratios are assessed.</param> /// <param name="minimumThroughput">The minimum throughput: this many actions or more must pass through the circuit in the timeslice, for statistics to be considered significant and the circuit-breaker to come into action.</param> /// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param> /// <param name="onBreak">The action to call when the circuit transitions to an <see cref="CircuitState.Open"/> state.</param> /// <param name="onReset">The action to call when the circuit resets to a <see cref="CircuitState.Closed"/> state.</param> /// <param name="onHalfOpen">The action to call when the circuit transitions to <see cref="CircuitState.HalfOpen"/> state, ready to try action executions again. </param> /// <returns>The policy instance.</returns> /// <remarks>(see "Release It!" by Michael T. Nygard fi)</remarks> /// <exception cref="ArgumentOutOfRangeException">failureThreshold;Value must be greater than zero</exception> /// <exception cref="ArgumentOutOfRangeException">failureThreshold;Value must be less than or equal to one</exception> /// <exception cref="ArgumentOutOfRangeException">samplingDuration;Value must be equal to or greater than the minimum resolution of the CircuitBreaker timer</exception> /// <exception cref="ArgumentOutOfRangeException">minimumThroughput;Value must be greater than one</exception> /// <exception cref="ArgumentOutOfRangeException">durationOfBreak;Value must be greater than zero</exception> /// <exception cref="ArgumentNullException">onBreak</exception> /// <exception cref="ArgumentNullException">onReset</exception> /// <exception cref="ArgumentNullException">onHalfOpen</exception> public static CircuitBreakerPolicy AdvancedCircuitBreakerAsync(this PolicyBuilder policyBuilder, double failureThreshold, TimeSpan samplingDuration, int minimumThroughput, TimeSpan durationOfBreak, Action <Exception, CircuitState, TimeSpan, Context> onBreak, Action <Context> onReset, Action onHalfOpen) { var resolutionOfCircuit = TimeSpan.FromTicks(AdvancedCircuitController <EmptyStruct> .ResolutionOfCircuitTimer); if (failureThreshold <= 0) { throw new ArgumentOutOfRangeException("failureThreshold", "Value must be greater than zero."); } if (failureThreshold > 1) { throw new ArgumentOutOfRangeException("failureThreshold", "Value must be less than or equal to one."); } if (samplingDuration < resolutionOfCircuit) { throw new ArgumentOutOfRangeException("samplingDuration", String.Format("Value must be equal to or greater than {0} milliseconds. This is the minimum resolution of the CircuitBreaker timer.", resolutionOfCircuit.TotalMilliseconds)); } if (minimumThroughput <= 1) { throw new ArgumentOutOfRangeException("minimumThroughput", "Value must be greater than one."); } if (durationOfBreak < TimeSpan.Zero) { throw new ArgumentOutOfRangeException("durationOfBreak", "Value must be greater than zero."); } if (onBreak == null) { throw new ArgumentNullException("onBreak"); } if (onReset == null) { throw new ArgumentNullException("onReset"); } if (onHalfOpen == null) { throw new ArgumentNullException("onHalfOpen"); } var breakerController = new AdvancedCircuitController <EmptyStruct>( failureThreshold, samplingDuration, minimumThroughput, durationOfBreak, (outcome, state, timespan, context) => onBreak(outcome.Exception, state, timespan, context), onReset, onHalfOpen); return(new CircuitBreakerPolicy( (action, context, cancellationToken, continueOnCapturedContext) => CircuitBreakerEngine.ImplementationAsync <EmptyStruct>( async(ctx, ct) => { await action(ctx, ct).ConfigureAwait(continueOnCapturedContext); return EmptyStruct.Instance; }, context, policyBuilder.ExceptionPredicates, PredicateHelper <EmptyStruct> .EmptyResultPredicates, breakerController, cancellationToken, continueOnCapturedContext), policyBuilder.ExceptionPredicates, breakerController )); }