Пример #1
0
 /// <summary>
 /// Perform the processor-bound portion of the RetryForException logic.
 /// This is shared by the sync, async, and APM versions of the RetryForException method.
 /// </summary>
 /// <param name="executionContext"></param>
 /// <param name="exception"></param>
 /// <returns>a value if it can be determined, or null if the IO-bound calculations need to be done</returns>
 public bool?RetryForExceptionSync(Runtime.IExecutionContext executionContext, Exception exception)
 {
     return(AmazonS3RetryPolicy.SharedRetryForExceptionSync(executionContext, exception, Logger, base.RetryForException));
 }