Ejemplo n.º 1
0
 public static void Subscribe(this MysoftMqttClient client, IMqttTopic topic, MqttQosLevel qos)
 {
     client.Subscribe(topic.Build(), qos);
 }
        public TopicSubscriber(IMqttTopic topic, MqttQosLevel qos = MqttQosLevel.AtMostOnce, bool shared = false) : this(topic.Build(), qos, shared)
        {

        }