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.
   */
  setProxy(ProxyType type, String proxyAddress)
}
ClientCacheClientCacheFactory {
  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; 
}

...