public Installer(ActorRefFactory <InstallManagerActor> actorBuilder) : base(actorBuilder) => Init("Installer");
 public AppRegistry(ActorRefFactory <AppRegistryActor> actorBuilder) : base(actorBuilder) => Init("Apps-Registry");
Exemplo n.º 3
0
 public AutoUpdater(ActorRefFactory <AutoUpdateActor> actorBuilder)
     : base(actorBuilder) =>
 public AppManager(ActorRefFactory <AppManagerActor> actorBuilder)
     : base(actorBuilder)
 {
     Init("Service-Manager");
 }
Exemplo n.º 5
0
 public static ActorRef ActorOf(this ActorRefFactory factory, Action <IActorDsl, IActorContext> config, string name = null)
 {
     return(factory.ActorOf(Props.Create(() => new Act(config)), name));
 }
Exemplo n.º 6
0
 public static ActorRef ActorOf <TActor>(this ActorRefFactory factory, string name = null) where TActor : ActorBase, new()
 {
     return(factory.ActorOf(Props.Create <TActor>(), name: name));
 }