Akka.Tests.Actor.DeathWatchSpec.FailedSupervisorStrategy.ProcessFailure C# (CSharp) Метод

ProcessFailure() защищенный Метод

protected ProcessFailure ( IActorContext context, bool restart, Exception cause, Akka.Actor.Internal.ChildRestartStats failedChildStats, IReadOnlyCollection allChildren ) : void
context IActorContext
restart bool
cause System.Exception
failedChildStats Akka.Actor.Internal.ChildRestartStats
allChildren IReadOnlyCollection
Результат void
            protected override void ProcessFailure(IActorContext context, bool restart, Exception cause, ChildRestartStats failedChildStats, IReadOnlyCollection<ChildRestartStats> allChildren)
            {
                var child = failedChildStats.Child;
                TestActor.Tell(new FF(new Failed(child, cause, failedChildStats.Uid)), child);
                base.ProcessFailure(context, restart, cause, failedChildStats, allChildren);
            }
        }
DeathWatchSpec.FailedSupervisorStrategy