Blacker.MangaScraper.Common.Utils.FifoSemaphore.FifoSemaphore C# (CSharp) Метод

FifoSemaphore() публичный Метод

Constructor, creates a FifoSemaphore
public FifoSemaphore ( int tokens ) : System.Collections.Generic
tokens int The number of tokens the semaphore will start with
Результат System.Collections.Generic
        public FifoSemaphore(int tokens)
        {
            _tokens = tokens;
            _waitQueue = new Queue<Waiter>();
        }