您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

24 行
556B

  1. using DotNetty.Transport.Channels;
  2. using Microsoft.Extensions.Logging;
  3. using System;
  4. using System.Collections.Concurrent;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace NearCardAttendance.Service.TcpServer.Mapper
  10. {
  11. public class TcpClientsManager : ConcurrentDictionary<string, IChannel>
  12. {
  13. private readonly ILogger<TcpClientsManager> _logger;
  14. public TcpClientsManager(ILogger<TcpClientsManager> logger)
  15. {
  16. _logger = logger;
  17. }
  18. }
  19. }