Parcourir la source

删除客户端SessionIdleCheckerComponent,客户端用不着检测session idle状态

大爷 il y a 1 an
Parent
commit
ba12a64344

+ 4 - 0
Unity/Assets/Scripts/Codes/Hotfix/Client/Module/Message/NetClientComponentSystem.cs

@@ -58,10 +58,12 @@ namespace ET.Client
             long channelId = NetServices.Instance.CreateConnectChannelId();
             Session session = self.AddChildWithId<Session, int>(channelId, self.ServiceId);
             session.RemoteAddress = realIPEndPoint;
+#if !UNITY
             if (self.DomainScene().SceneType != SceneType.Benchmark)
             {
                 session.AddComponent<SessionIdleCheckerComponent>();
             }
+#endif
             NetServices.Instance.CreateChannel(self.ServiceId, session.Id, realIPEndPoint);
 
             return session;
@@ -72,10 +74,12 @@ namespace ET.Client
             long channelId = localConn;
             Session session = self.AddChildWithId<Session, int>(channelId, self.ServiceId);
             session.RemoteAddress = realIPEndPoint;
+#if !UNITY
             if (self.DomainScene().SceneType != SceneType.Benchmark)
             {
                 session.AddComponent<SessionIdleCheckerComponent>();
             }
+#endif
             NetServices.Instance.CreateChannel(self.ServiceId, session.Id, routerIPEndPoint);
 
             return session;

+ 3 - 5
Unity/Assets/Scripts/Codes/Hotfix/Share/Module/Message/SessionIdleCheckerComponentSystem.cs

@@ -1,4 +1,4 @@
-using System;
+using System;
 
 namespace ET
 {
@@ -23,7 +23,7 @@ namespace ET
     {
         protected override void Awake(SessionIdleCheckerComponent self)
         {
-            self.RepeatedTimer = TimerComponent.Instance.NewRepeatedTimer(SessionIdleCheckerComponentSystem.CheckInteral, TimerInvokeType.SessionIdleChecker, self);
+            self.RepeatedTimer = TimerComponent.Instance.NewRepeatedTimer( Math.Max( ConstValue.SessionTimeoutTime / 3, 5 ), TimerInvokeType.SessionIdleChecker, self);
         }
     }
 
@@ -38,8 +38,6 @@ namespace ET
 
     public static class SessionIdleCheckerComponentSystem
     {
-        public const int CheckInteral = 2000;
-        
         public static void Check(this SessionIdleCheckerComponent self)
         {
             Session session = self.GetParent<Session>();
@@ -56,4 +54,4 @@ namespace ET
             session.Dispose();
         }
     }
-}
+}