Akka.Tests.Actor.DeathWatchSpec.EchoTestActor.Receive C# (CSharp) Méthode

Receive() protected méthode

protected Receive ( object message ) : bool
message object
Résultat bool
            protected override bool Receive(object message)
            {
                Sender.Tell(message);
                return true;
            }
        }
DeathWatchSpec.EchoTestActor