Why do I get a DeathWatchNotification of an undelivered message on shutdown?
问题 Why do a get a DeathWatchNotification when running this console app: class Program { private static ActorSystem TestSystem; static void Main(string[] args) { TestSystem = ActorSystem.Create("TestSystem"); TestSystem.ActorOf<TestActor>("Test"); Console.WriteLine("Press a key to shutdown actor system"); Console.ReadKey(); TestSystem.Shutdown(); TestSystem.AwaitTermination(); Console.WriteLine("Press a key to quit"); Console.ReadKey(); } } public class TestActor : ReceiveActor { public TestActor