Click or drag to resize
Akka.NETIDowningProvider Interface
API for plugins that will handle downing of cluster nodes. Concrete plugins must subclass and have a public one argument constructor accepting an ActorSystem.

Namespace:  Akka.Cluster
Assembly:  Akka.Cluster (in Akka.Cluster.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IDowningProvider

The IDowningProvider type exposes the following members.

Properties
  NameDescription
Public propertyDowningActorProps
If a props is returned it is created as a child of the core cluster daemon on cluster startup. It should then handle downing using the regular Cluster APIs. The actor will run on the same dispatcher as the cluster actor if dispatcher not configured. May throw an exception which will then immediately lead to Cluster stopping, as the downing provider is vital to a working cluster.
Public propertyDownRemovalMargin
Time margin after which shards or singletons that belonged to a downed/removed partition are created in surviving partition. The purpose of this margin is that in case of a network partition the persistent actors in the non-surviving partitions must be stopped before corresponding persistent actors are started somewhere else. This is useful if you implement downing strategies that handle network partitions, e.g. by keeping the larger side of the partition and shutting down the smaller side.
Top
See Also