Package us.codecraft.webmagic.proxy

Examples of us.codecraft.webmagic.proxy.ProxyPool


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


    this.httpProxyPool=new ProxyPool(httpProxyList);
    return this;
  }

    public Site enableHttpProxyPool() {
        this.httpProxyPool=new ProxyPool();
        return this;
    }
View Full Code Here

TOP

Related Classes of us.codecraft.webmagic.proxy.ProxyPool

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.