| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Threading;
- namespace ET
- {
- public class NetThreadComponent: Entity, IAwake, ILateUpdate, IDestroy
- {
- public static NetThreadComponent Instance;
-
- public const int checkInteral = 20000;
- public const int recvMaxIdleTime = 60000;
- public const int sendMaxIdleTime = 60000;
- public ThreadSynchronizationContext ThreadSynchronizationContext;
-
- public HashSet<AService> Services = new HashSet<AService>();
- }
- }
|