MailboxDispatcherComponent.cs 406 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace ETModel
  3. {
  4. /// <summary>
  5. /// mailbox分发组件,不同类型的mailbox交给不同的MailboxHandle处理
  6. /// </summary>
  7. public class MailboxDispatcherComponent : Entity
  8. {
  9. public static MailboxDispatcherComponent Instance { get; set; }
  10. public readonly Dictionary<int, IMailboxHandler> MailboxHandlers = new Dictionary<int, IMailboxHandler>();
  11. }
  12. }