BitSharper.Threading.Locks.ReentrantLock.FairSync.IsQueued C# (CSharp) Method

IsQueued() public method

public IsQueued ( Thread thread ) : bool
thread Thread
return bool
            public override bool IsQueued(Thread thread)
            {
                lock (this)
                {
                    return _wq.IsWaiting(thread);
                }
            }