Akka.Cluster.Sharding.Tests.ClusterShardingFailureSpec.Entity.Entity C# (CSharp) Method

Entity() public method

public Entity ( ) : System
return System
            public Entity()
            {
                Receive<Get>(get => Sender.Tell(new Value(get.Id, _n)));
                Receive<Add>(add => _n += add.I);
            }
        }
ClusterShardingFailureSpec.Entity