HttpClientPool icon indicating copy to clipboard operation
HttpClientPool copied to clipboard

基于netty实现的支持并发的http客户端

Results 1 HttpClientPool issues
Sort by recently updated
recently updated
newest added

测试代码如下: ``` public static void main(String args[]) throws Throwable { final ClientPool pool = new NettyClientPool(1, "127.0.0.1"); pool.start(); for (int i = 0; i < 5; i++) { new Thread(new...