Bert.RateLimiters.Throttler.Throttler C# (CSharp) Метод

Throttler() публичный Метод

public Throttler ( IThrottleStrategy strategy ) : System
strategy IThrottleStrategy
Результат System
        public Throttler(IThrottleStrategy strategy)
        {
            if (strategy == null) throw new ArgumentNullException("strategy");
            this.strategy = strategy;
        }