예제 #1
0
 public EventLoopGroupFactoryTests()
 {
     _eventLoopGroupFactoryConfiguration = new EventLoopGroupFactoryConfiguration
     {
         TcpClientHandlerWorkerThreads = ExpectedTcpClientThreads,
         TcpServerHandlerWorkerThreads = ExpectedTcpServerThreads,
         UdpServerHandlerWorkerThreads = ExpectedUdpServerThreads,
         UdpClientHandlerWorkerThreads = ExpectedUdpClientThreads
     };
 }
 public UdpServerEventLoopGroupFactory(IEventLoopGroupFactoryConfiguration configuration)
 {
     _configuration = configuration;
 }
 public TcpClientEventLoopGroupFactory(IEventLoopGroupFactoryConfiguration configuration)
 {
     _configuration = configuration;
 }