コード例 #1
0
        public RetryManager(RetryWaitTimer waitTimer, int maxRetries, int totalTimeLimit)
        {
            if (waitTimer == null)
            {
                throw new ArgumentNullException("wait");
            }
            _waitTimer = waitTimer;

            SetMaxRetries(maxRetries);
            SetTotalTimeLimit(totalTimeLimit);
        }
コード例 #2
0
ファイル: RetryFramework.cs プロジェクト: KarthikTunga/Dryad
        public RetryManager(RetryWaitTimer waitTimer, int maxRetries, int totalTimeLimit)
        {
            if (waitTimer == null)
            {
                throw new ArgumentNullException("wait");
            }
            _waitTimer = waitTimer;

            SetMaxRetries(maxRetries);
            SetTotalTimeLimit(totalTimeLimit);
        }
コード例 #3
0
ファイル: RetryFramework.cs プロジェクト: KarthikTunga/Dryad
 public RetryManager(RetryWaitTimer waitTimer, int maxRetries)
     : this(waitTimer, maxRetries, Timeout.Infinite)
 {
 }
コード例 #4
0
ファイル: RetryFramework.cs プロジェクト: KarthikTunga/Dryad
 public RetryManager(RetryWaitTimer waitTimer)
     : this(waitTimer, InfiniteRetries)
 {
 }
コード例 #5
0
 public RetryManager(RetryWaitTimer waitTimer, int maxRetries) : this(waitTimer, maxRetries, Timeout.Infinite)
 {
 }
コード例 #6
0
 public RetryManager(RetryWaitTimer waitTimer) : this(waitTimer, InfiniteRetries)
 {
 }