| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | | package com.dy.common.mw.protocol4Mqtt; |  |   |  | /** |  |  * @Author: liurunyu |  |  * @Date: 2025/6/10 15:56 |  |  * @Description |  |  */ |  | public interface MqttNotify { |  |     /** |  |      * MQTT DEV 信息通知 |  |      * @param devId |  |      * @param info |  |      */ |  |     void notify(String devId, |  |                 MqttNotifyInfo...info) ; |  | } | 
 |