Package akka.cluster
Class NoDowning
- java.lang.Object
-
- akka.cluster.DowningProvider
-
- akka.cluster.NoDowning
-
public final class NoDowning extends DowningProvider
Default downing provider used when no provider is configured and 'auto-down-unreachable-after' is not enabled.
-
-
Constructor Summary
Constructors Constructor Description NoDowning(ActorSystem system)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description scala.Option<Props>
downingActorProps()
If a props is returned it is created as a child of the core cluster daemon on cluster startup.scala.concurrent.duration.FiniteDuration
downRemovalMargin()
-
Methods inherited from class akka.cluster.DowningProvider
load
-
-
-
-
Constructor Detail
-
NoDowning
public NoDowning(ActorSystem system)
-
-
Method Detail
-
downRemovalMargin
public scala.concurrent.duration.FiniteDuration downRemovalMargin()
- Specified by:
downRemovalMargin
in classDowningProvider
-
downingActorProps
public scala.Option<Props> downingActorProps()
Description copied from class:DowningProvider
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 regularCluster
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.
- Specified by:
downingActorProps
in classDowningProvider
- Returns:
- (undocumented)
-
-