Akka.Remote.Tests.MultiNode.RemoteNodeRestartDeathWatchSpec.Subject.Receive C# (CSharp) Метод

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

protected Receive ( object message ) : bool
message object
Результат bool
            protected override bool Receive(object message)
            {
                if ("shutdown".Equals(message))
                {
                    Sender.Tell("shutdown-ack");
                    Context.System.Terminate();
                }
                else
                {
                    Sender.Tell(message);
                }
                return true;
            }
        }
RemoteNodeRestartDeathWatchSpec.Subject