Пример #1
0
 public MqttPublishingService(BrokerCommandTopics brokerCommandTopics, BrokerEventTopics brokerEventTopics, ILogger logger)
 {
     this.brokerCommandTopics = brokerCommandTopics;
     this.brokerEventTopics   = brokerEventTopics;
     this.logger = logger;
 }
Пример #2
0
 public MqttInternalService(IMqttServer mqttServer, BrokerCommandTopics commandTopics, BrokerEventTopics eventTopics)
 {
     this.mqttServer    = mqttServer;
     this.commandTopics = commandTopics;
     this.eventTopics   = eventTopics;
 }
Пример #3
0
 public MqttConnectionService(IApiService apiService, BrokerEventTopics eventTopics)
 {
     this.apiService  = apiService;
     this.eventTopics = eventTopics;
 }
Пример #4
0
 public MqttPublishingService(BrokerCommandTopics brokerCommandTopics, BrokerEventTopics brokerEventTopics)
 {
     this.brokerCommandTopics = brokerCommandTopics;
     this.brokerEventTopics   = brokerEventTopics;
 }
Пример #5
0
 public MqttConnectionService(IAuthenticationService authenticationService, IUserService userService, BrokerEventTopics eventTopics)
 {
     this.authenticationService = authenticationService;
     this.userService           = userService;
     EventTopics = eventTopics;
 }