Ejemplo n.º 1
0
 public OperationPoller(DelayStrategy?fallbackStrategy = null)
 {
     _delayStrategy = new RetryAfterDelayStrategy(fallbackStrategy);
 }
Ejemplo n.º 2
0
 public RetryAfterDelayStrategy(DelayStrategy?fallbackStrategy = null)
 {
     _fallbackStrategy = fallbackStrategy ?? new ConstantDelayStrategy();
 }