Akka.Actor.ActorBase.ActorBase C# (CSharp) 메소드

ActorBase() 보호된 메소드

Initializes a new instance of the ActorBase class.
Do not create actors using 'new', always create them using an ActorContext/System
protected ActorBase ( ) : System
리턴 System
        protected ActorBase()
        {
            if (ActorCell.Current == null)
                throw new ActorInitializationException("Do not create actors using 'new', always create them using an ActorContext/System");
            Context.Become(Receive);
        }