Akka.Tests.Actor.DeathWatchSpec.KnobKidActor.Receive C# (CSharp) Метод

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

protected Receive ( object message ) : bool
message object
Результат bool
            protected override bool Receive(object message)
            {
                message.Match().With<string>(x =>
                {
                    if (x == Knob)
                    {
                        Context.Stop(Self);
                    }
                });
                return true;
            }
        }
DeathWatchSpec.KnobKidActor