| | |
| | | package com.doumee.core.mqtt.service; |
| | | |
| | | import com.doumee.core.mqtt.config.MqttClientInit; |
| | | import com.doumee.core.mqtt.config.MqttConfig; |
| | | import com.doumee.service.business.DeviceService; |
| | | import com.doumee.service.business.DeviceSubcribeService; |
| | | import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken; |
| | | import org.eclipse.paho.client.mqttv3.MqttCallback; |
| | | import org.eclipse.paho.client.mqttv3.MqttMessage; |
| | | import org.eclipse.paho.client.mqttv3.*; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | |
| | | public void connectionLost(Throwable cause) { |
| | | |
| | | // 连接丢失后,一般在这里面进行重连 |
| | | System.out.println("连接断开,可以做重连"); |
| | | System.out.println("连接断开,重连中"); |
| | | try { |
| | | MqttClientInit.refreshClient(); |
| | | } catch (MqttException e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | } |
| | | |
| | | @Override |