메소드 | 설명 | |
---|---|---|
CanRetry ( IExecutionContext executionContext ) : bool |
Returns true if the request is in a state where it can be retried, else false.
|
|
NotifySuccess ( IExecutionContext executionContext ) : void |
Virtual method that gets called on a successful request response.
|
|
OnRetry ( IExecutionContext executionContext ) : bool |
Virtual method that gets called before a retry request is initiated. The value returned is True by default(retry throttling feature is disabled).
|
|
Retry ( IExecutionContext executionContext, Exception exception ) : bool |
Checks if a retry should be performed with the given execution context and exception.
|
|
RetryAsync ( IExecutionContext executionContext, Exception exception ) : Task |
Checks if a retry should be performed with the given execution context and exception.
|
|
RetryForException ( IExecutionContext executionContext, Exception exception ) : bool |
Return true if the request should be retried for the given exception.
|
|
RetryForExceptionAsync ( IExecutionContext executionContext, Exception exception ) : Task |
Return true if the request should be retried for the given exception.
|
|
RetryLimitReached ( IExecutionContext executionContext ) : bool |
Checks if the retry limit is reached.
|
|
WaitBeforeRetry ( IExecutionContext executionContext ) : void |
Waits before retrying a request.
|
|
WaitBeforeRetryAsync ( IExecutionContext executionContext ) : Task |
Waits before retrying a request.
|
메소드 | 설명 | |
---|---|---|
GetWebData ( |
||
IsClockskew ( IExecutionContext executionContext, |
||
RetrySync ( IExecutionContext executionContext, Exception exception ) : bool? |
Perform the processor-bound portion of the Retry logic. This is shared by the sync, async, and APM versions of the Retry method.
|
|
TryParseDateHeader ( AmazonServiceException ase, DateTime &serverTime ) : bool | ||
TryParseExceptionMessage ( AmazonServiceException ase, DateTime &serverTime ) : bool |
public abstract CanRetry ( IExecutionContext executionContext ) : bool | ||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
리턴 | bool |
public NotifySuccess ( IExecutionContext executionContext ) : void | ||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
리턴 | void |
public OnRetry ( IExecutionContext executionContext ) : bool | ||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
리턴 | bool |
public Retry ( IExecutionContext executionContext, Exception exception ) : bool | ||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
exception | Exception | The exception throw after issuing the request. |
리턴 | bool |
public RetryAsync ( IExecutionContext executionContext, Exception exception ) : Task |
||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
exception | Exception | The exception throw after issuing the request. |
리턴 | Task |
public abstract RetryForException ( IExecutionContext executionContext, Exception exception ) : bool | ||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
exception | Exception | The exception thrown by the previous request. |
리턴 | bool |
public abstract RetryForExceptionAsync ( IExecutionContext executionContext, Exception exception ) : Task |
||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
exception | Exception | The exception thrown by the previous request. |
리턴 | Task |
public abstract RetryLimitReached ( IExecutionContext executionContext ) : bool | ||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
리턴 | bool |
public abstract WaitBeforeRetry ( IExecutionContext executionContext ) : void | ||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
리턴 | void |
public abstract WaitBeforeRetryAsync ( IExecutionContext executionContext ) : Task | ||
executionContext | IExecutionContext | The execution context which contains both the /// requests and response context. |
리턴 | Task |