Akka.Actor.ActorBase.BecomeStacked C# (CSharp) Метод

BecomeStacked() защищенный Метод

Changes the actor's behavior and replaces the current receive handler with the specified handler. The current handler is stored on a stack, and you can revert to it by calling IActorContext.UnbecomeStacked Please note, that in order to not leak memory, make sure every call to BecomeStacked is matched with a call to IActorContext.UnbecomeStacked.
protected BecomeStacked ( Receive receive ) : void
receive Receive The new message handler.
Результат void
        protected void BecomeStacked(Receive receive)
        {
            Context.BecomeStacked(receive);
        }