CTT/Server/Model/Module/Actor/ActorMessageSenderComponent.cs

19 lines
519 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System.Collections.Generic;
namespace ET
{
public class ActorMessageSenderComponent: Entity
{
public static long TIMEOUT_TIME = 40 * 1000;
public static ActorMessageSenderComponent Instance { get; set; }
public int RpcId;
public readonly SortedDictionary<int, ActorMessageSender> requestCallback = new SortedDictionary<int, ActorMessageSender>();
public long TimeoutCheckTimer;
public List<int> TimeoutActorMessageSenders = new List<int>();
}
}