瀏覽代碼

Add a message id to the received messages

master
Dirk Alders 6 月之前
父節點
當前提交
14e56ccdbf
共有 1 個檔案被更改,包括 1 行新增0 行删除
  1. 1
    0
      __init__.py

+ 1
- 0
__init__.py 查看文件

@@ -88,6 +88,7 @@ class mqtt_client(object):
88 88
         logger.warning("Disconnect with rc=%s", repr(rc))
89 89
 
90 90
     def __receive__(self, client, userdata, message):
91
+        message.mid = self.__client__._mid_generate()	# add a message id to the received message
91 92
         get_topic_logger(message.topic).debug("Received message with topic %s and payload %s", message.topic, str(message.payload))
92 93
         for topic in self.__callbacks__.copy():
93 94
             if topic.endswith('#'):

Loading…
取消
儲存