BrakePedal.MemoryThrottleRepository.RemoveThrottle C# (CSharp) 메소드

RemoveThrottle() 공개 메소드

public RemoveThrottle ( IThrottleKey key, BrakePedal.Limiter limiter ) : void
key IThrottleKey
limiter BrakePedal.Limiter
리턴 void
        public void RemoveThrottle(IThrottleKey key, Limiter limiter)
        {
            string lockId = CreateThrottleKey(key, limiter);
            _store.Remove(lockId);
        }