public MessageReaderService(ILogger <MessageReaderService> logger, IotHubSettings iotHubSettings, IActorSystemService actorSystem)
 {
     _logger         = logger;
     _iotHubSettings = iotHubSettings;
     _actorSystem    = actorSystem;
 }
 public DevicesController(IActorSystemService actorSystem)
 {
     _actorSystem = actorSystem;
 }
Esempio n. 3
0
 public MeasurementsController(IActorSystemService actorSystem)
 {
     _actorSystem = actorSystem;
 }
Esempio n. 4
0
 public SimpleActorController(IActorSystemService myActorSystemService)
 {
     this.myActorSystemService = myActorSystemService;
 }