Akka.Actor.Settings.RebuildConfig C# (CSharp) Method

RebuildConfig() private method

Combines the user config and the fallback chain of configs
private RebuildConfig ( ) : void
return void
        private void RebuildConfig()
        {
            Config = _userConfig.SafeWithFallback(_fallbackConfig);

            //if we get a new config definition loaded after all ActorRefProviders have been started, such as Akka.Persistence...
            if(System != null && System.Dispatchers != null)
                System.Dispatchers.ReloadPrerequisites(new DefaultDispatcherPrerequisites(System.EventStream, System.Scheduler, this, System.Mailboxes));
        }