Akka.Dispatch.ConcurrentQueueMailbox.TryDequeue C# (CSharp) Method

TryDequeue() protected method

protected TryDequeue ( Envelope &envelope ) : bool
envelope Akka.Actor.Envelope
return bool
        protected bool TryDequeue(out Envelope envelope)
        {
            return _userMessages.TryDequeue(out envelope);
        }
    }