C# 클래스 Polly.CircuitBreaker.CircuitBreakerPolicy

파일 보기 프로젝트 열기: App-vNext/Polly

공개 메소드들

메소드 설명
Isolate ( ) : void

Isolates (opens) the circuit manually, and holds it in this state until a call to Reset() is made.

Reset ( ) : void

Closes the circuit, and resets any statistics controlling automated circuit-breaking.

비공개 메소드들

메소드 설명
CircuitBreakerPolicy ( Action exceptionPolicy, IEnumerable exceptionPredicates, ICircuitController breakerController ) : System
CircuitBreakerPolicy ( Task>.Func asyncExceptionPolicy, IEnumerable exceptionPredicates, ICircuitController breakerController ) : System

메소드 상세

Isolate() 공개 메소드

Isolates (opens) the circuit manually, and holds it in this state until a call to Reset() is made.
public Isolate ( ) : void
리턴 void

Reset() 공개 메소드

Closes the circuit, and resets any statistics controlling automated circuit-breaking.
public Reset ( ) : void
리턴 void