Akka.Persistence.Tests.SnapshotFailureRobustnessSpec.LoadSnapshotTestActor.ReceiveRecover C# (CSharp) Method

ReceiveRecover() protected method

protected ReceiveRecover ( object message ) : bool
message object
return bool
            protected override bool ReceiveRecover(object message)
            {
                if (message is string)
                    _probe.Tell(message + "-" + LastSequenceNr);
                else
                    _probe.Tell(message);
                return true;
            }
SnapshotFailureRobustnessSpec.LoadSnapshotTestActor