C# 클래스 Spring.Retry.Retry.Policy.ExceptionClassifierRetryPolicy

TODO: Update summary.
상속: IRetryPolicy
파일 보기 프로젝트 열기: spring-projects/spring-net-retry

공개 메소드들

메소드 설명
CanRetry ( IRetryContext context ) : bool

Delegate to the policy currently activated in the context. IRetryPolicy.CanRetry

Close ( IRetryContext context ) : void

Delegate to the policy currently activated in the context. IRetryPolicy.Close

Open ( IRetryContext parent ) : IRetryContext

Create an active context that proxies a retry policy by chosing a target from the policy map. IRetryPolicy.Open

RegisterException ( IRetryContext context, Exception exception ) : void

The register exception.

SetPolicyMap ( IRetryPolicy>.IDictionary policyMap ) : void

Setter for policy map used to create a classifier. Either this property or the exception classifier directly should be set, but not both.

메소드 상세

CanRetry() 공개 메소드

Delegate to the policy currently activated in the context. IRetryPolicy.CanRetry
public CanRetry ( IRetryContext context ) : bool
context IRetryContext The context.
리턴 bool

Close() 공개 메소드

Delegate to the policy currently activated in the context. IRetryPolicy.Close
public Close ( IRetryContext context ) : void
context IRetryContext The context.
리턴 void

Open() 공개 메소드

Create an active context that proxies a retry policy by chosing a target from the policy map. IRetryPolicy.Open
public Open ( IRetryContext parent ) : IRetryContext
parent IRetryContext The parent.
리턴 IRetryContext

RegisterException() 공개 메소드

The register exception.
public RegisterException ( IRetryContext context, Exception exception ) : void
context IRetryContext The context.
exception System.Exception The exception.
리턴 void

SetPolicyMap() 공개 메소드

Setter for policy map used to create a classifier. Either this property or the exception classifier directly should be set, but not both.
public SetPolicyMap ( IRetryPolicy>.IDictionary policyMap ) : void
policyMap IRetryPolicy>.IDictionary A map of Exception type to that will be used to create a to locate a policy.
리턴 void