Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.EnqueueFirst C# (CSharp) Метод

EnqueueFirst() публичный Метод

Add a message to the front of the queue via the prepend buffer.
public EnqueueFirst ( Envelope envelope ) : void
envelope Akka.Actor.Envelope The message we wish to append to the front of the queue.
Результат void
        public void EnqueueFirst(Envelope envelope)
        {
            _prependBuffer.Push(envelope);
        }
    }