562935844@qq.com
2022-05-13 7dcdbd35cd0979b6fa756fdcf388ab3c63edf545
HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/socket/HdlSocketHelper.java
@@ -21,7 +21,7 @@
 */
public class HdlSocketHelper {
    private static final Long DEF_SEND_TIMEOUT = 500L;
    private static final Long DEF_SEND_TIMEOUT = 1000L;
    private static final int DEF_MAX_RETRY = 4;
    private static final int DEF_SEND_ONE = 1;
@@ -173,7 +173,7 @@
                            }
                        }
                    } catch (Exception e) {
                        e.printStackTrace();
                        LogUtils.e("发送数据失败:" + e.getMessage());
                    }
                } else {
                    //超出重发次数并没有收到回复
@@ -206,13 +206,17 @@
    private void notifyFailure() {
        //移除监听
        removeListener();
        if (sendThread != null) {
            sendThread.shutdownNow();
            sendThread = null;
        }
        if (listener != null) {
            listener.onFailure();
            listener = null;
        try {
            if (sendThread != null) {
                sendThread.shutdownNow();
                sendThread = null;
            }
            if (listener != null) {
                listener.onFailure();
                listener = null;
            }
        } catch (Exception e) {
        }
    }
}