Bert.RateLimiters.Throttler.Throttler C# (CSharp) Method

Throttler() public method

public Throttler ( IThrottleStrategy strategy ) : System
strategy IThrottleStrategy
return System
        public Throttler(IThrottleStrategy strategy)
        {
            if (strategy == null) throw new ArgumentNullException("strategy");
            this.strategy = strategy;
        }