소스 검색

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…
취소
저장