Akka.Persistence.Tests.PersistentActorSpec.BehaviorThreeActor.ReceiveCommand C# (CSharp) Method

ReceiveCommand() protected method

protected ReceiveCommand ( object message ) : bool
message object
return bool
            protected override bool ReceiveCommand(object message)
            {
                return CommonBehavior(message) || Receiver(message);
            }
PersistentActorSpec.BehaviorThreeActor