Beispiel #1
0
 internal async Task ForceRemove(MqttManager mqttManager)
 {
     this.IsActive = false;
     await mqttManager.SendMessage(this.GetMqttTopic(), this.ToBytes()).ConfigureAwait(false);
 }
Beispiel #2
0
 internal async Task SendMqttMessage(MqttManager mqttManager)
 {
     await mqttManager.SendMessage(this.GetMqttTopic(), this.ToBytes()).ConfigureAwait(false);
 }