Akka.Cluster.Sharding.Tests.Counter.ReceiveRecover C# (CSharp) Метод

ReceiveRecover() защищенный Метод

protected ReceiveRecover ( object message ) : bool
message object
Результат bool
        protected override bool ReceiveRecover(object message)
        {
            return message.Match()
                .With<CounterChanged>(UpdateState)
                .WasHandled;
        }