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

LockExists() 공개 메소드

public LockExists ( IThrottleKey key, BrakePedal.Limiter limiter ) : bool
key IThrottleKey
limiter BrakePedal.Limiter
리턴 bool
        public bool LockExists(IThrottleKey key, Limiter limiter)
        {
            string lockId = CreateLockKey(key, limiter);
            return _store.Contains(lockId);
        }