BatchFlow.Flow.IncrementInProcess C# (CSharp) Méthode

IncrementInProcess() private méthode

private IncrementInProcess ( ) : void
Résultat void
        internal void IncrementInProcess()
        {
            lock (_inProcessLock)
            {
                _inProcessCounter++;
                if (_inProcessCounter == 1)
                {
                    //we were free, but not anymore
                    _ready.WaitOne();
                }
            }
        }