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

Become() protected method

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

Same methods

UntypedActor::Become ( UntypedReceive receive, bool discardOld = true ) : void