447448449450451452453454
* Set httpProxyPool, String[0]:ip, String[1]:port <br> * * @return this */ public Site setHttpProxyPool(List<String[]> httpProxyList) { this.httpProxyPool=new ProxyPool(httpProxyList); return this; }
452453454455456457458459
this.httpProxyPool=new ProxyPool(httpProxyList); return this; } public Site enableHttpProxyPool() { this.httpProxyPool=new ProxyPool(); return this; }