Akka.Dispatch.MessageQueues.UnboundedMessageQueue.TryDequeue C# (CSharp) Method

TryDequeue() public method

public TryDequeue ( Envelope &envelope ) : bool
envelope Akka.Actor.Envelope
return bool
        public bool TryDequeue(out Envelope envelope)
        {
            return _queue.TryDequeue(out envelope);
        }
    }
UnboundedMessageQueue