Akka.Reactive.Messages.CreateSubject.CreateSubject C# (CSharp) Method

CreateSubject() public method

Create a new CreateSubject message.
public CreateSubject ( IActorRef target, Type baseMessageType ) : System
target IActorRef /// The target actor represented by the subject. ///
baseMessageType System.Type /// The target actor represented by the subject. ///
return System
        public CreateSubject(IActorRef target, Type baseMessageType)
        {
            Target = target;
            BaseMessageType = baseMessageType;
        }
CreateSubject