Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
PoolFactory {    
  /**    
   * Set the proxy to be used when making connections from this pool.
   * @param proxyAddress is host and port formatted like the authority part of a URL
   * but without any userinfo part. See RFC 3986 for details. Examples:
   *
   *  "foo.bar.com:1234" is a fully-qualified domain name and port
   *  "1.2.3.4:567" is an IPv4 address and port
   *  "[1:2::1]:80" is an IPv6 address and port
   */
  setProxy(ProxyType type, String proxyAddress)
}

ClientCacheFactory {
  /**
   * (see description of proxyAddress above)
   */
  setPoolProxy(ProxyType type, String proxyAddress)
}

enum ProxyType {
   /**        
    * Use a SNI proxy. With an SNI proxy, the proxyAddress field should be specified as host:port        
    */   
   SNI; 
}

...