SupervisorStrategyResumeChild Method |
Resume the previously failed child: do never apply this to a child which
is not the currently failing child. Suspend/resume needs to be done in
matching pairs, otherwise actors will wake up too soon or never at all.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxprotected void ResumeChild(
ActorRef child,
Exception exception
)
Protected Sub ResumeChild (
child As ActorRef,
exception As Exception
)
protected:
void ResumeChild(
ActorRef^ child,
Exception^ exception
)
member ResumeChild :
child : ActorRef *
exception : Exception -> unit
Parameters
- child
- Type: Akka.ActorActorRef
The child. - exception
- Type: SystemException
The exception.
See Also