Akka.Tests.Actor.DeathWatchSpec.EchoTestActor.Receive C# (CSharp) Method

Receive() protected method

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