public PrinterActorProvider(ActorSystem actorSystem)
 {
     this.ActorRef = actorSystem.ActorOfWithDI <PrinterActor>("printer-actor");
 }
Exemplo n.º 2
0
 public OrderActorProvider(ActorSystem actorSystem)
 {
     this.ActorRef = actorSystem.ActorOfWithDI <OrderActor>("order-actor");
 }
 public SampleDataActorProvider(ActorSystem actorSystem)
 {
     this.ActorRef = actorSystem.ActorOfWithDI <SampleDataActor>("sample-actor");
 }
 public ProductActorProvider(ActorSystem actorSystem)
 {
     this.ActorRef = actorSystem.ActorOfWithDI <ProductActor>("product-actor");
 }
 public SimulationActorProvider(ActorSystem actorSystem)
 {
     this.ActorRef = actorSystem.ActorOfWithDI <SimulationActor>("simulation-actor");
 }
Exemplo n.º 6
0
 public ProcessingCoordinatorActorProvider(ActorSystem actorSystem)
 {
     this.ActorRef = actorSystem.ActorOfWithDI <ProcessingCoordinatorActor>("processing-coordinator-actor");
 }