Akka.Cluster.Sharding.Tests.ClusterShardingGracefulShutdownSpec.Entity.Entity C# (CSharp) 메소드

Entity() 공개 메소드

public Entity ( ) : System
리턴 System
            public Entity()
            {
                Receive<int>(id => Sender.Tell(id));
                Receive<StopEntity>(_ => Context.Stop(Self));
            }
        }
ClusterShardingGracefulShutdownSpec.Entity