Akka.Interfaced.SlimServer.ActorBoundChannelTest.TestActorBoundChannel.PreStart C# (CSharp) Method

PreStart() protected method

protected PreStart ( ) : void
return void
            protected override void PreStart()
            {
                base.PreStart();

                if (_initialActorFactory != null)
                {
                    var actors = _initialActorFactory(Context);
                    if (actors != null)
                    {
                        foreach (var actor in actors)
                            BindActor(actor.Item1, actor.Item2.Select(t => new BoundType(t)), actor.Item3);
                    }
                }
            }