Ejemplo n.º 1
0
        private GuardianActorRef CreateRootGuardian()
        {
            var supervisor   = new RootGuardianSupervisor(_rootPath, this);
            var rootGuardian = new GuardianActorRef(this, ActorCreationProperties.Create(() => new Guardian()), _rootPath, CreateDefaultMailbox(), supervisor);

            return(rootGuardian);
        }
Ejemplo n.º 2
0
 public ActorRef CreateActor(ActorCreationProperties actorCreationProperties, string name = null)
 {
     if (!_isStarted)
     {
         throw new InvalidOperationException(string.Format("You must call {0}.Start() before creating an actor.", typeof(ActorSystem).Name));
     }
     return(_userGuardian.CreateActor(actorCreationProperties, name));
 }
Ejemplo n.º 3
0
        public ActorRef CreateActor(Type actorType, string name = null)
        {
            if (!typeof(Actor).IsAssignableFrom(actorType))
            {
                throw new ArgumentException(string.Format("Cannot create an instance of type {0} since it is not an actor", actorType.FullName));
            }
            var instance = CreateActor(ActorCreationProperties.Create(() => (Actor)CreateInstance(actorType)));

            return((ActorRef)instance);
        }
Ejemplo n.º 4
0
 public ActorRef CreateActor <T>(Func <T> creator, string name = null) where T : Actor
 {
     return(CreateActor(ActorCreationProperties.Create(creator), name));
 }