Akka.Actor.ActorBase.Become C# (CSharp) Method

Become() protected method

Changes the actor's command behavior and replaces the current receive handler with the specified handler.
protected Become ( Receive receive ) : void
receive Receive The new message handler.
return void
        protected void Become(Receive receive)
        {
            Context.Become(receive);
        }

Same methods

ActorBase::Become ( Receive receive, bool discardOld = true ) : void