public override void Run(Action toRun)
 {
     parent.Run(toRun);
     base.Run(toRun);
 }
Ejemplo n.º 2
0
 public ThrottleOptions(IThrottleFactory throttleFactory, TimeSpan throttleTime, IInputChangeRunner runner)
 {
     this.throttleFactory = throttleFactory;
     this.throttleTime    = throttleTime;
     runner.Run(() => throttle.Invoke());
 }