Enum BehaviorResilienceExceptionHandling
Namespace: Cephalon.Abstractions.Resilience
Assembly: Cephalon.Abstractions.dll
Describes how a behavior-execution exception should participate in resilience handling.
public enum BehaviorResilienceExceptionHandlingFields
Section titled “Fields”Ignore = 0
Ignore the exception for resilience accounting.
RetryAndTrip = 2
Count the exception for circuit-breaker accounting and treat it as eligible for future retry handling.
TripOnly = 1
Count the exception for circuit-breaker style failure accounting, but do not automatically retry it.