Akka.Remote.TestKit.MultiNodeSpec.StartNewSystem C# (CSharp) Метод

StartNewSystem() защищенный Метод

protected StartNewSystem ( ) : ActorSystem
Результат ActorSystem
        protected ActorSystem StartNewSystem()
        {
            var config =
                ConfigurationFactory
                .ParseString(String.Format(@"helios.tcp{port={0}\nhostname=""{1}""",
                    _myAddress.Host,
                    _myAddress.Port))
                .WithFallback(Sys.Settings.Config);

            var system = ActorSystem.Create(Sys.Name, config);
            InjectDeployments(system, _myself);
            AttachConductor(new TestConductor(system));
            return system;
        }