Akka.Cluster.Sharding.Tests.Counter.ReceiveRecover C# (CSharp) Method

ReceiveRecover() protected method

protected ReceiveRecover ( object message ) : bool
message object
return bool
        protected override bool ReceiveRecover(object message)
        {
            return message.Match()
                .With<CounterChanged>(UpdateState)
                .WasHandled;
        }