黄学彪
2019-10-10 2ed75b8b337048e5d75e6d9ec8307633134f02fd
ZigbeeApp/Shared/Phone/UserCenter/HdlBackup/HdlGatewayListBackUpForm.cs
@@ -62,7 +62,7 @@
            //设置接受在线状态推送
            this.AddGatewayOnlinePush();
            new System.Threading.Thread(() =>
            HdlThreadLogic.Current.RunThread(() =>
            {
                List<ZbGateway> listway = HdlGatewayLogic.Current.GetAllLocalGateway();
                if (listway.Count == 0)
@@ -83,8 +83,7 @@
                    //开启网关在线监测的线程
                    this.StartGatewayOnlieCheckThread(listway);
                });
            })
            { IsBackground = true }.Start();
            });
        }
        #endregion
@@ -157,7 +156,7 @@
        /// <param name="listway"></param>
        private void StartGatewayOnlieCheckThread(List<ZbGateway> listway)
        {
            new System.Threading.Thread(() =>
            HdlThreadLogic.Current.RunThread(() =>
            {
                System.Threading.Thread.Sleep(300);
                //刷新网关在线状态
@@ -173,8 +172,7 @@
                }
                //网关新版本检测
                this.CheckGatewayNewVersion(listway);
            })
            { IsBackground = true }.Start();
            });
        }
        /// <summary>