Akka.Interfaced.TestKit.Tests.TestActorBoundChannelTest.CreateInitialActor C# (CSharp) Method

CreateInitialActor() private method

private CreateInitialActor ( IActorContext context ) : Tuple[]
context IActorContext
return Tuple[]
        private Tuple<IActorRef, TaggedType[], ActorBindingFlags>[] CreateInitialActor(IActorContext context)
        {
            return new[]
            {
                Tuple.Create(
                    context.ActorOf(Props.Create(() => new UserLoginActor(context.Self))),
                    new TaggedType[] { typeof(IUserLogin) },
                    ActorBindingFlags.CloseThenStop)
            };
        }