Hydra.Events.StreamContainer.GetSemaphore C# (CSharp) Method

GetSemaphore() private static method

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