this.defaultSocksProxyAddress = defaultSocksProxyAddress;
int bossThreadCount = configBuilder.getNiftyBossThreadCount();
int workerThreadCount = configBuilder.getNiftyWorkerThreadCount();
NioWorkerPool workerPool = new NioWorkerPool(workerExecutor, workerThreadCount, ThreadNameDeterminer.CURRENT);
NioClientBossPool bossPool = new NioClientBossPool(bossExecutor, bossThreadCount, hashedWheelTimer, ThreadNameDeterminer.CURRENT);
this.channelFactory = new NioClientSocketChannelFactory(bossPool, workerPool);
}