Click or drag to resize
Akka.NETAllForOneStrategy Constructor
Overload List
  NameDescription
Protected methodAllForOneStrategy()
Serialization-friendly constructor
Public methodAllForOneStrategy(Func<Exception, Directive>)
Constructor that accepts only a decider and uses reasonable defaults for the other settings
Public methodAllForOneStrategy(IDecider)
Constructor that accepts only a decider and uses reasonable defaults for the other settings
Public methodAllForOneStrategy(Nullable<Int32>, Nullable<TimeSpan>, IDecider)
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 methodAllForOneStrategy(Nullable<Int32>, Nullable<TimeSpan>, Func<Exception, 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 methodAllForOneStrategy(Int32, Int32, IDecider, 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.
Public methodAllForOneStrategy(Int32, Int32, Func<Exception, 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
See Also