Hydra.Events.StreamContainer.GetSemaphore C# (CSharp) 메소드

GetSemaphore() 개인적인 정적인 메소드

private static GetSemaphore ( String account, String container, String blob ) : SemaphoreSlim
account String
container String
blob String
리턴 System.Threading.SemaphoreSlim
        private static SemaphoreSlim GetSemaphore(String account, String container, String blob)
        {
            return Locks.Get($"{account}-{container}", blob);
        }