Click or drag to resize
OneForOneStrategy Class
Class OneForOneStrategy. This class cannot be inherited.
Inheritance Hierarchy

Namespace: Akka.Actor
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public class OneForOneStrategy : SupervisorStrategy

The OneForOneStrategy type exposes the following members.

Constructors
  NameDescription
Protected methodOneForOneStrategy
Serialization-friendly constructor
Public methodOneForOneStrategy(FuncException, Directive)
Constructor that accepts only a decider and uses reasonable defaults for the other settings
Public methodOneForOneStrategy(NullableInt32, NullableTimeSpan, FuncException, Directive)
Applies the fault handling `Directive` (Resume, Restart, Stop) specified in the `Decider` to all children when one fails, as opposed to OneForOneStrategy that applies it only to the child actor that failed.
Public methodOneForOneStrategy(Int32, Int32, FuncException, Directive, Boolean)
Applies the fault handling `Directive` (Resume, Restart, Stop) specified in the `Decider` to all children when one fails, as opposed to OneForOneStrategy that applies it only to the child actor that failed.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodHandle
Handles the specified child.
(Overrides SupervisorStrategyHandle(ActorRef, Exception).)
Public methodHandleChildTerminated (Overrides SupervisorStrategyHandleChildTerminated(IActorContext, ActorRef, IEnumerableInternalActorRef).)
Public methodHandleFailure
This is the main entry point: in case of a child’s failure, this method must try to handle the failure by resuming, restarting or stopping the child (and returning `true`), or it returns `false` to escalate the failure, which will lead to this actor re-throwing the exception which caused the failure. The exception will not be wrapped. This method calls SupervisorStrategy, which will log the failure unless it is escalated. You can customize the logging by setting SupervisorStrategy to `false` and do the logging inside the `decider` or override the `LogFailure` method.
(Inherited from SupervisorStrategy.)
Protected methodLogFailure
Logs the failure.
(Inherited from SupervisorStrategy.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodProcessFailure (Overrides SupervisorStrategyProcessFailure(IActorContext, Boolean, Exception, ChildRestartStats, IReadOnlyCollectionChildRestartStats).)
Protected methodRestartChild
Restarts the child.
(Inherited from SupervisorStrategy.)
Protected methodResumeChild
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.
(Inherited from SupervisorStrategy.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
Properties
See Also