public class FailureDetectorLoader$
extends java.lang.Object
Utility class to create FailureDetector instances reflectively.
| Modifier and Type | Field and Description |
|---|---|
static FailureDetectorLoader$ |
MODULE$
Static reference to the singleton instance of this Scala object.
|
| Constructor and Description |
|---|
FailureDetectorLoader$() |
| Modifier and Type | Method and Description |
|---|---|
FailureDetector |
apply(java.lang.String fqcn,
com.typesafe.config.Config config,
ActorContext ctx)
Loads and instantiates a given
FailureDetector implementation. |
FailureDetector |
load(java.lang.String fqcn,
com.typesafe.config.Config config,
ActorSystem system)
Loads and instantiates a given
FailureDetector implementation. |
public static final FailureDetectorLoader$ MODULE$
public FailureDetector load(java.lang.String fqcn, com.typesafe.config.Config config, ActorSystem system)
FailureDetector implementation. The class to be loaded must have a constructor
that accepts a Config and an EventStream parameter. Will throw ConfigurationException
if the implementation cannot be loaded.
fqcn - Fully qualified class name of the implementation to be loaded.config - Configuration that will be passed to the implementationsystem - ActorSystem to be used for loading the implementationFailureDetector implementationpublic FailureDetector apply(java.lang.String fqcn, com.typesafe.config.Config config, ActorContext ctx)
FailureDetector implementation. The class to be loaded must have a constructor
that accepts a Config and an EventStream parameter. Will throw ConfigurationException
if the implementation cannot be loaded. Use FailureDetectorLoader.load(java.lang.String, com.typesafe.config.Config, akka.actor.ActorSystem) if no implicit ActorContext is
available.
fqcn - Fully qualified class name of the implementation to be loaded.config - Configuration that will be passed to the implementationctx - (undocumented)