Akka.Reactive.Actors.ReactiveManager.CreateSubjectManager C# (CSharp) Method

CreateSubjectManager() private method

Create a SubjectManager{TMessage}.
private CreateSubjectManager ( CreateSubject createSubjectManager ) : IActorRef
createSubjectManager CreateSubject
return IActorRef
        IActorRef CreateSubjectManager(CreateSubject createSubjectManager)
        {
            Type subjectManagerType = SubjectManagerTypeDef.MakeGenericType(createSubjectManager.BaseMessageType);

            return Context.ActorOf(
                 Props.Create(subjectManagerType, createSubjectManager.Target)
            );
        }