提交 563d0f8e 编写于 作者: 如梦技术's avatar 如梦技术 🐛

mqtt client 代码优化。

上级 85312652
......@@ -259,7 +259,11 @@ public class DefaultMqttClientProcessor implements IMqttClientProcessor {
subscriptionList.forEach(subscription -> {
IMqttClientMessageListener listener = subscription.getListener();
payload.rewind();
listener.onMessage(topicName, payload);
try {
listener.onMessage(topicName, payload);
} catch (Throwable e) {
logger.error(e.getMessage(), e);
}
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册