From 2ed75b8b337048e5d75e6d9ec8307633134f02fd Mon Sep 17 00:00:00 2001
From: 黄学彪 <hxb@hdlchina.com.cn>
Date: 星期四, 10 十月 2019 11:33:04 +0800
Subject: [PATCH] 个人中心添加楼层和创建房间,实装二级验证

---
 ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlDeviceUpdateLogic.cs |   20 ++++++++------------
 1 files changed, 8 insertions(+), 12 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlDeviceUpdateLogic.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlDeviceUpdateLogic.cs
index e07eeb3..b6ef03e 100755
--- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlDeviceUpdateLogic.cs
+++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlDeviceUpdateLogic.cs
@@ -382,12 +382,11 @@
             {
                 this.zbGateway.ReportAction -= this.UpdateDeviceProgress;
 
-                new System.Threading.Thread(async () =>
+                HdlThreadLogic.Current.RunThread(async () =>
                 {
                     //缁堟鍗囩骇
                     await this.otaDevice.KillUpdateAsync(this.zbGateway, 200);
-                })
-                { IsBackground = true }.Start();
+                });
 
                 this.UpdateStatu = UpdateStatuMode.DeviceUpdateFail;
                 return;
@@ -556,7 +555,7 @@
             //鍗囩骇鎴愬姛
             this.UpdateStatu = UpdateStatuMode.UpdateSuccess;
 
-            new System.Threading.Thread(() =>
+            HdlThreadLogic.Current.RunThread(() =>
             {
                 System.Threading.Thread.Sleep(3000);
 
@@ -592,8 +591,7 @@
                     //璁惧鍗囩骇鎴愬姛!
                     this.UpdateStatuChangedEvent?.Invoke(1, Language.StringByID(R.MyInternationalizationString.uDeviceUpdateSuccess));
                 });
-            })
-            { IsBackground = true }.Start();
+            });
         }
 
         #endregion
@@ -636,7 +634,7 @@
         private void StartDownLoadTimeOutThread()
         {
             this.downLoadTimeOutCount = 30;
-            new System.Threading.Thread(() =>
+            HdlThreadLogic.Current.RunThread(() =>
             {
                 while (true)
                 {
@@ -665,8 +663,7 @@
                         break;
                     }
                 }
-            })
-            { IsBackground = true }.Start();
+            });
         }
 
         /// <summary>
@@ -691,7 +688,7 @@
         private void StartUpdateTimeOutThread()
         {
             this.UpdateTimeOutCount = 60;
-            new System.Threading.Thread(() =>
+            HdlThreadLogic.Current.RunThread(() =>
             {
                 while (true)
                 {
@@ -719,8 +716,7 @@
                         break;
                     }
                 }
-            })
-            { IsBackground = true }.Start();
+            });
         }
 
         /// <summary>

--
Gitblit v1.8.0