Bot.Core.Processors.AsyncProcessor.ParallelCalls C# (CSharp) Method

ParallelCalls() protected method

Used to determine if there are parallell calls of this command running. TODO: Reconsider
protected ParallelCalls ( ) : bool
return bool
        protected bool ParallelCalls()
        {
            long c = Interlocked.Read(ref counter);
            return c > 1;
        }