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

FaultSuspend() private method

Suspends the actor in response to a failure of a parent (i.e. the "recursive suspend" feature).
private FaultSuspend ( ) : void
return void
        private void FaultSuspend()
        {
            SuspendNonRecursive();
            SuspendChildren();
        }