Akka.Actor.ActorCell.StopChildren C# (CSharp) Method

StopChildren() private method

private StopChildren ( ) : void
return void
        private void StopChildren()
        {
            foreach (var child in ChildrenContainer.Children)
            {
                child.Stop();

                //ActorCell.Children line 84 https://github.com/akkadotnet/akka.net/issues/2024
                //Stop(child); // TODO: need to call this, but only after ActorCell.AttachChild and proper child creation semantics have been added
            }
        }