Click or drag to resize
SupervisorStrategyHandleChildTerminated Method
This method is called after the child has been removed from the set of children. It does not need to do anything special. Exceptions thrown from this method do NOT make the actor fail if this happens during termination.

Namespace: Akka.Actor
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public abstract void HandleChildTerminated(
	IActorContext actorContext,
	ActorRef child,
	IEnumerable<InternalActorRef> children
)

Parameters

actorContext
Type: Akka.ActorIActorContext

[Missing <param name="actorContext"/> documentation for "M:Akka.Actor.SupervisorStrategy.HandleChildTerminated(Akka.Actor.IActorContext,Akka.Actor.ActorRef,System.Collections.Generic.IEnumerable{Akka.Actor.InternalActorRef})"]

child
Type: Akka.ActorActorRef

[Missing <param name="child"/> documentation for "M:Akka.Actor.SupervisorStrategy.HandleChildTerminated(Akka.Actor.IActorContext,Akka.Actor.ActorRef,System.Collections.Generic.IEnumerable{Akka.Actor.InternalActorRef})"]

children
Type: System.Collections.GenericIEnumerableInternalActorRef

[Missing <param name="children"/> documentation for "M:Akka.Actor.SupervisorStrategy.HandleChildTerminated(Akka.Actor.IActorContext,Akka.Actor.ActorRef,System.Collections.Generic.IEnumerable{Akka.Actor.InternalActorRef})"]

See Also