InjectTopLevelFallback() public method

Injects a system config at the top of the fallback chain
public InjectTopLevelFallback ( Config config ) : void
config Akka.Configuration.Config
return void
コード例 #1
0
 public ClusterActorRefProvider(string systemName, Settings settings, EventStream eventStream /*DynamicAccess*/)
     : base(systemName, settings, eventStream)
 {
     var clusterConfig = ClusterConfigFactory.Default();
     settings.InjectTopLevelFallback(clusterConfig);
     Deployer = new ClusterDeployer(settings);
 }