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

MultiNodeSpecAfterAll() публичный Метод

public MultiNodeSpecAfterAll ( ) : void
Результат void
        public void MultiNodeSpecAfterAll()
        {
            // wait for all nodes to remove themselves before we shut the conductor down
            if (SelfIndex == 0)
            {
                TestConductor.RemoveNode(_myself);
                Within(TestConductor.Settings.BarrierTimeout, () =>
                    AwaitCondition(() => TestConductor.GetNodes().Result.All(n => n.Equals(_myself))));

            }
            Shutdown(Sys);
            AfterTermination();
        }