Akka.TestKit.Tests.TestActorRefTests.TestActorRefSpec.SaveStringActor.ReceiveMessage C# (CSharp) Method

ReceiveMessage() protected method

protected ReceiveMessage ( object message ) : bool
message object
return bool
            protected override bool ReceiveMessage(object message)
            {
                ReceivedString = message as string;
                return true;
            }
        }
TestActorRefSpec.SaveStringActor