Example #1
0
 public OperationPoller(DelayStrategy?fallbackStrategy = null)
 {
     _delayStrategy = new RetryAfterDelayStrategy(fallbackStrategy);
 }
Example #2
0
 public RetryAfterDelayStrategy(DelayStrategy?fallbackStrategy = null)
 {
     _fallbackStrategy = fallbackStrategy ?? new ConstantDelayStrategy();
 }