Akka.Actor.Internal.AbstractStash.Unstash C# (CSharp) 메소드

Unstash() 공개 메소드

Unstash the most recently stashed message (top of the message stack.)
public Unstash ( ) : void
리턴 void
        public void Unstash()
        {
            if(_theStash.Count > 0)
            {
                try
                {
                    EnqueueFirst(_theStash.Head());
                }
                finally
                {
                    _theStash.RemoveFirst();
                }
            }
        }