http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientCacheFactory.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientCacheFactory.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientCacheFactory.html index 0021b82..badbf90 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientCacheFactory.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientCacheFactory.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>ClientCacheFactory (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>ClientCacheFactory (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ClientCacheFactory (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="ClientCacheFactory (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -111,87 +111,86 @@ var activeTableTab = "activeTableTab"; <pre>public class <span class="typeNameLabel">ClientCacheFactory</span> extends java.lang.Object</pre> <div class="block">Factory class used to create the singleton <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCache.html" title="interface in com.gemstone.gemfire.cache.client"><code>client cache</code></a> and connect to one or more GemFire Cache Servers. If the application wants to connect to GemFire as a peer it should use <a href="../../../../../com/gemstone/gemfire/cache/CacheFactory.html" title="class in com.gemstone.gemfire.cache"><code>CacheFactory</code></a> instead. -<p> Once the factory has been configured using its set* methods you produce a <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCache.html" title="interface in com.gemstone.gemfire.cache.client"><code>ClientCache</code></a> by calling the <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#create--"><code>create()</code></a> method. -The -<a href="../distribution/DistributedSystem.html#cache-xml-file">"cache-xml-file"</a> -property can be used to specify a cache.xml file to initialize the cache with. -The contents of this file must comply with the + <p> Once the factory has been configured using its set* methods you produce a <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCache.html" title="interface in com.gemstone.gemfire.cache.client"><code>ClientCache</code></a> by calling the <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#create--"><code>create()</code></a> method. + The <a href="../../../../../com/gemstone/gemfire/distributed/ConfigurationProperties.html#CACHE_XML_FILE"><code>ConfigurationProperties.CACHE_XML_FILE</code></a> + property can be used to specify a cache.xml file to initialize the cache with. + The contents of this file must comply with the <code>"doc-files/cache8_0.dtd"</code> file and the top level element must be a <code>client-cache</code> element. -<p> Client connections are managed through connection <a href="../../../../../com/gemstone/gemfire/cache/client/Pool.html" title="interface in com.gemstone.gemfire.cache.client"><code>pools</code></a>. ClientCacheFactory creates a single pool to use by default on the cache it creates. ClientCacheFactory can also be used to configure the default connection pool using its <code>setPool*</code> and <code>addPool*</code> methods. In most cases, the defaults used by this implementation will suffice. For the default pool attributes see <a href="../../../../../com/gemstone/gemfire/cache/client/PoolFactory.html" title="interface in com.gemstone.gemfire.cache.client"><code>PoolFactory</code></a>. -If no pool is configured and a pool was not declared in cache.xml or created using <a href="../../../../../com/gemstone/gemfire/cache/client/PoolManager.html" title="class in com.gemstone.gemfire.cache.client"><code>PoolManager</code></a> then a default one will be created that connects to a server on the default cache server port and local host. If multiple pools are declared in cache.xml or created by the PoolFactory then no default pool will exist and <code>ClientRegionFactory.setPoolName</code> will need to be called on each region created. -<p> -To get the existing unclosed singleton client cache instance call <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#getAnyInstance--"><code>getAnyInstance()</code></a>. -<p> -The following examples illustrate bootstrapping the client cache using region shortcuts: -<p> -Example 1: Connect to a CacheServer on the default host and port and access a region "customers" -<PRE> - ClientCache c = new ClientCacheFactory().create(); - Region r = c.createClientRegionFactory(PROXY).create("customers"); - // The PROXY shortcut tells GemFire to route all requests to the servers - //. i.e. there is no local caching -</PRE> -Example 2: Connect using the GemFire locator and create a local LRU cache -<PRE> - ClientCache c = new ClientCacheFactory() - .addPoolLocator(host, port) - .create(); - Region r = c.createClientRegionFactory(CACHING_PROXY_HEAP_LRU) - .create("customers"); - // The local LRU "customers" data region will automatically start evicting, by default, at 80% heap utilization threshold -</PRE> -Example 3: Access the query service -<PRE> - QueryService qs = new ClientCacheFactory().create().getQueryService(); -</PRE> -Example 4: Construct the client cache region declaratively in cache.xml -<PRE> - <!DOCTYPE client-cache PUBLIC - "-//GemStone Systems, Inc.//GemFire Declarative Caching 6.5//EN" - "http://www.gemstone.com/dtd/cache8_0.dtd"> - <client-cache> - <pool name="myPool"> - <locator host="hostName" port="10334"/> - </pool> - <region name="myRegion" refid="PROXY"/> - <!-- you can override or add to the PROXY attributes by adding - a region-attributes sub element here --> - </client-cache> -</PRE> -Now, create the cache telling it to read your cache.xml file: -<PRE> - ClientCache c = new ClientCacheFactory() - .set("cache-xml-file", "myCache.xml") - .create(); - Region r = c.getRegion("myRegion"); -</PRE> - -<p> For a complete list of all client region shortcuts see <a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionShortcut.html" title="enum in com.gemstone.gemfire.cache.client"><code>ClientRegionShortcut</code></a>. -Applications that need to explicitly control the individual region attributes can do this declaratively in XML or using API. -<p> -Example 5: Define custom region attributes for persistence in XML and create region using API. - Define new region attributes with ID "MYAPP_CACHING_PROXY_MEM_LRU" that overrides the - "CACHING_PROXY" shortcut -<PRE> + <p> Client connections are managed through connection <a href="../../../../../com/gemstone/gemfire/cache/client/Pool.html" title="interface in com.gemstone.gemfire.cache.client"><code>pools</code></a>. ClientCacheFactory creates a single pool to use by default on the cache it creates. ClientCacheFactory can also be used to configure the default connection pool using its <code>setPool*</code> and <code>addPool*</code> methods. In most cases, the defaults used by this implementation will suffice. For the default pool attributes see <a href="../../../../../com/gemstone/gemfire/cache/client/PoolFactory.html" title="interface in com.gemstone.gemfire.cache.client"><code>PoolFactory</code></a>. + If no pool is configured and a pool was not declared in cache.xml or created using <a href="../../../../../com/gemstone/gemfire/cache/client/PoolManager.html" title="class in com.gemstone.gemfire.cache.client"><code>PoolManager</code></a> then a default one will be created that connects to a server on the default cache server port and local host. If multiple pools are declared in cache.xml or created by the PoolFactory then no default pool will exist and <code>ClientRegionFactory.setPoolName</code> will need to be called on each region created. + <p> + To get the existing unclosed singleton client cache instance call <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#getAnyInstance--"><code>getAnyInstance()</code></a>. + <p> + The following examples illustrate bootstrapping the client cache using region shortcuts: + <p> + Example 1: Connect to a CacheServer on the default host and port and access a region "customers" + <PRE> + ClientCache c = new ClientCacheFactory().create(); + Region r = c.createClientRegionFactory(PROXY).create("customers"); + // The PROXY shortcut tells GemFire to route all requests to the servers + //. i.e. there is no local caching + </PRE> + Example 2: Connect using the GemFire locator and create a local LRU cache + <PRE> + ClientCache c = new ClientCacheFactory() + .addPoolLocator(host, port) + .create(); + Region r = c.createClientRegionFactory(CACHING_PROXY_HEAP_LRU) + .create("customers"); + // The local LRU "customers" data region will automatically start evicting, by default, at 80% heap utilization threshold + </PRE> + Example 3: Access the query service + <PRE> + QueryService qs = new ClientCacheFactory().create().getQueryService(); + </PRE> + Example 4: Construct the client cache region declaratively in cache.xml + <PRE> <!DOCTYPE client-cache PUBLIC - "-//GemStone Systems, Inc.//GemFire Declarative Caching 8.0//EN" - "http://www.gemstone.com/dtd/cache8_0.dtd"> + "-//GemStone Systems, Inc.//GemFire Declarative Caching 6.5//EN" + "http://www.gemstone.com/dtd/cache8_0.dtd"> <client-cache> - <!-- now create a named region attributes that uses the CACHING_PROXY shortcut - and adds a memory LRU limited to 900 megabytes --> - <region-attributes id="MYAPP_CACHING_PROXY_MEM_LRU" refid="CACHING_PROXY" > - <lru-memory-size maximum="900"/> - </region-attributes> - </client-cache> -</PRE> -Now, create the data region in the client cache using this new attributes ID. -<PRE> - ClientCache c = new ClientCacheFactory() - .set("cache-xml-file", "myCache.xml") - .addPoolLocator(host, port) - .create(); - Region r = c.createClientRegionFactory("MYAPP_CACHING_PROXY_MEM_LRU").create("customers"); -</PRE></div> + <pool name="myPool"> + <locator host="hostName" port="10334"/> + </pool> + <region name="myRegion" refid="PROXY"/> + <!-- you can override or add to the PROXY attributes by adding + a region-attributes sub element here --> + </client-cache> + </PRE> + Now, create the cache telling it to read your cache.xml file: + <PRE> + ClientCache c = new ClientCacheFactory() + .set("cache-xml-file", "myCache.xml") + .create(); + Region r = c.getRegion("myRegion"); + </PRE> + <p> + <p> For a complete list of all client region shortcuts see <a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionShortcut.html" title="enum in com.gemstone.gemfire.cache.client"><code>ClientRegionShortcut</code></a>. + Applications that need to explicitly control the individual region attributes can do this declaratively in XML or using API. + <p> + Example 5: Define custom region attributes for persistence in XML and create region using API. + Define new region attributes with ID "MYAPP_CACHING_PROXY_MEM_LRU" that overrides the + "CACHING_PROXY" shortcut + <PRE> + <!DOCTYPE client-cache PUBLIC + "-//GemStone Systems, Inc.//GemFire Declarative Caching 8.0//EN" + "http://www.gemstone.com/dtd/cache8_0.dtd"> + <client-cache> + <!-- now create a named region attributes that uses the CACHING_PROXY shortcut + and adds a memory LRU limited to 900 megabytes --> + <region-attributes id="MYAPP_CACHING_PROXY_MEM_LRU" refid="CACHING_PROXY" > + <lru-memory-size maximum="900"/> + </region-attributes> + </client-cache> + </PRE> + Now, create the data region in the client cache using this new attributes ID. + <PRE> + ClientCache c = new ClientCacheFactory() + .set("cache-xml-file", "myCache.xml") + .addPoolLocator(host, port) + .create(); + Region r = c.createClientRegionFactory("MYAPP_CACHING_PROXY_MEM_LRU").create("customers"); + </PRE></div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> <dd>6.5</dd> @@ -468,8 +467,8 @@ Now, create the data region in the client cache using this new attributes ID. <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>props</code> - The initial gemfire properties to be used. - These properties can be overridden using the <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#set-java.lang.String-java.lang.String-"><code>set(java.lang.String, java.lang.String)</code></a> method - For a full list of valid gemfire properties see <a href="../../../../../com/gemstone/gemfire/distributed/DistributedSystem.html" title="class in com.gemstone.gemfire.distributed"><code>DistributedSystem</code></a>.</dd> + These properties can be overridden using the <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#set-java.lang.String-java.lang.String-"><code>set(java.lang.String, java.lang.String)</code></a> method + For a full list of valid gemfire properties see <a href="../../../../../com/gemstone/gemfire/distributed/ConfigurationProperties.html" title="interface in com.gemstone.gemfire.distributed"><code>ConfigurationProperties</code></a>.</dd> </dl> </li> </ul> @@ -490,7 +489,7 @@ Now, create the data region in the client cache using this new attributes ID. <pre>public <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html" title="class in com.gemstone.gemfire.cache.client">ClientCacheFactory</a> set(java.lang.String name, java.lang.String value)</pre> <div class="block">Sets a gemfire property that will be used when creating the ClientCache. - For a full list of valid gemfire properties see <a href="../../../../../com/gemstone/gemfire/distributed/DistributedSystem.html" title="class in com.gemstone.gemfire.distributed"><code>DistributedSystem</code></a>.</div> + For a full list of valid gemfire properties see <a href="../../../../../com/gemstone/gemfire/distributed/ConfigurationProperties.html" title="interface in com.gemstone.gemfire.distributed"><code>ConfigurationProperties</code></a>.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>name</code> - the name of the gemfire property</dd> @@ -510,7 +509,7 @@ Now, create the data region in the client cache using this new attributes ID. <div class="block">Create a singleton client cache. If a client cache already exists in this vm that is not compatible with this factory's configuration then create will fail. - <p> While creating the cache instance any declarative cache configuration (cache.xml) + <p> While creating the cache instance any declarative cache configuration (cache.xml) is processed and used to initialize the created cache. <P>Note that the cache that is produced is a singleton. Before a different instance can be produced the old one must be <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCache.html#close-boolean-"><code>closed</code></a>.</div> @@ -519,19 +518,19 @@ Now, create the data region in the client cache using this new attributes ID. <dd>the singleton client cache</dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>CacheXmlException</code> - If a problem occurs while parsing the declarative caching - XML file.</dd> + XML file.</dd> <dd><code>TimeoutException</code> - If a <a href="../../../../../com/gemstone/gemfire/cache/Region.html#put-K-V-"><code>Region.put(Object, Object)</code></a> times out while initializing the - cache.</dd> + cache.</dd> <dd><code>CacheWriterException</code> - If a <code>CacheWriterException</code> is thrown while - initializing the cache.</dd> + initializing the cache.</dd> <dd><code>RegionExistsException</code> - If the declarative caching XML file describes a region - that already exists (including the root region).</dd> + that already exists (including the root region).</dd> <dd><code>java.lang.IllegalStateException</code> - if a client cache already exists and it - is not compatible with this factory's configuration.</dd> + is not compatible with this factory's configuration.</dd> <dd><code>java.lang.IllegalStateException</code> - if mcast-port or locator is set on client cache.</dd> <dd><code>AuthenticationFailedException</code> - if authentication fails.</dd> <dd><code>AuthenticationRequiredException</code> - if server is in secure mode and client cache - is not configured with security credentials.</dd> + is not configured with security credentials.</dd> </dl> </li> </ul> @@ -547,7 +546,7 @@ Now, create the data region in the client cache using this new attributes ID. if all of the connections are in use. The free connection timeout specifies how long those operations will block waiting for a free connection before receiving - an <a href="../../../../../com/gemstone/gemfire/cache/client/AllConnectionsInUseException.html" title="class in com.gemstone.gemfire.cache.client"><code>AllConnectionsInUseException</code></a>. If max connections + an <a href="../../../../../com/gemstone/gemfire/cache/client/AllConnectionsInUseException.html" title="class in com.gemstone.gemfire.cache.client"><code>AllConnectionsInUseException</code></a>. If max connections is not set this setting has no effect.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -556,7 +555,7 @@ Now, create the data region in the client cache using this new attributes ID. <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>connectionTimeout</code> - is less than or equal to <code>0</code>.</dd> + is less than or equal to <code>0</code>.</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#setPoolMaxConnections-int-"><code>setPoolMaxConnections(int)</code></a></dd> </dl> @@ -570,9 +569,9 @@ Now, create the data region in the client cache using this new attributes ID. <h4>setPoolLoadConditioningInterval</h4> <pre>public <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html" title="class in com.gemstone.gemfire.cache.client">ClientCacheFactory</a> setPoolLoadConditioningInterval(int loadConditioningInterval)</pre> <div class="block">Sets the load conditioning interval for this pool. - This interval controls how frequently the pool will check to see if + This interval controls how frequently the pool will check to see if a connection to a given server should be moved to a different - server to improve the load balance. + server to improve the load balance. <p>A value of <code>-1</code> disables load conditioning</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -581,7 +580,7 @@ Now, create the data region in the client cache using this new attributes ID. <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>connectionLifetime</code> - is less than <code>-1</code>.</dd> + is less than <code>-1</code>.</dd> </dl> </li> </ul> @@ -599,12 +598,12 @@ Now, create the data region in the client cache using this new attributes ID. <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>bufferSize</code> - the size of the socket buffers used for reading and - writing on each connection in this pool.</dd> + writing on each connection in this pool.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>bufferSize</code> - is less than or equal to <code>0</code>.</dd> + is less than or equal to <code>0</code>.</dd> </dl> </li> </ul> @@ -628,7 +627,7 @@ Now, create the data region in the client cache using this new attributes ID. <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>threadLocalConnections</code> - if <code>true</code> then enable thread local - connections.</dd> + connections.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> </dl> @@ -650,7 +649,7 @@ Now, create the data region in the client cache using this new attributes ID. <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>timeout</code> - is less than <code>0</code>.</dd> + is less than <code>0</code>.</dd> </dl> </li> </ul> @@ -662,18 +661,18 @@ Now, create the data region in the client cache using this new attributes ID. <h4>setPoolMinConnections</h4> <pre>public <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html" title="class in com.gemstone.gemfire.cache.client">ClientCacheFactory</a> setPoolMinConnections(int minConnections)</pre> <div class="block">Set the minimum number of connections to keep available at all times. - When the pool is created, it will create this many connections. + When the pool is created, it will create this many connections. If <code>0</code> then connections will not be made until an actual operation is done that requires client-to-server communication.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>minConnections</code> - the initial number of connections - this pool will create.</dd> + this pool will create.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>minConnections</code> - is less than <code>0</code>.</dd> + is less than <code>0</code>.</dd> </dl> </li> </ul> @@ -684,18 +683,18 @@ Now, create the data region in the client cache using this new attributes ID. <li class="blockList"> <h4>setPoolMaxConnections</h4> <pre>public <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html" title="class in com.gemstone.gemfire.cache.client">ClientCacheFactory</a> setPoolMaxConnections(int maxConnections)</pre> -<div class="block">Set the max number of client to server connections that the pool will create. If all of +<div class="block">Set the max number of client to server connections that the pool will create. If all of the connections are in use, an operation requiring a client to server connection will block until a connection is available.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>maxConnections</code> - the maximum number of connections in the pool. - this pool will create. -1 indicates that there is no maximum number of connections</dd> + this pool will create. -1 indicates that there is no maximum number of connections</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>maxConnections</code> - is less than <code>minConnections</code>.</dd> + is less than <code>minConnections</code>.</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#setPoolFreeConnectionTimeout-int-"><code>setPoolFreeConnectionTimeout(int)</code></a></dd> </dl> @@ -709,18 +708,18 @@ Now, create the data region in the client cache using this new attributes ID. <h4>setPoolIdleTimeout</h4> <pre>public <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html" title="class in com.gemstone.gemfire.cache.client">ClientCacheFactory</a> setPoolIdleTimeout(long idleTimeout)</pre> <div class="block">Set the amount of time a connection can be idle before expiring the connection. - If the pool size is greater than the minimum specified by + If the pool size is greater than the minimum specified by <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#setPoolMinConnections-int-"><code>setPoolMinConnections(int)</code></a>, connections which have been idle for longer than the idleTimeout will be closed.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>idleTimeout</code> - The amount of time in milliseconds that an idle connection - should live before expiring. -1 indicates that connections should never expire.</dd> + should live before expiring. -1 indicates that connections should never expire.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>idleTimout</code> - is less than <code>-1</code>.</dd> + is less than <code>-1</code>.</dd> </dl> </li> </ul> @@ -734,14 +733,14 @@ Now, create the data region in the client cache using this new attributes ID. <div class="block">Set the number of times to retry a request after timeout/exception.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> -<dd><code>retryAttempts</code> - The number of times to retry a request - after timeout/exception. -1 indicates that a request should be - tried against every available server before failing</dd> +<dd><code>retryAttempts</code> - The number of times to retry a request + after timeout/exception. -1 indicates that a request should be + tried against every available server before failing</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>idleTimout</code> - is less than <code>-1</code>.</dd> + is less than <code>-1</code>.</dd> </dl> </li> </ul> @@ -755,19 +754,19 @@ Now, create the data region in the client cache using this new attributes ID. <div class="block">How often to ping servers to verify that they are still alive. Each server will be sent a ping every pingInterval if there has not been any other communication with the server. - + <p> These pings are used by the server to monitor the health of - the client. Make sure that the pingInterval is less than the + the client. Make sure that the pingInterval is less than the maximum time between pings allowed by the cache server.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>pingInterval</code> - The amount of time in milliseconds between - pings.</dd> + pings.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>pingInterval</code> - is less than or equal to <code>0</code>.</dd> + is less than or equal to <code>0</code>.</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/server/CacheServer.html#setMaximumTimeBetweenPings-int-"><code>CacheServer.setMaximumTimeBetweenPings(int)</code></a></dd> </dl> @@ -787,12 +786,12 @@ Now, create the data region in the client cache using this new attributes ID. <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>statisticInterval</code> - The amount of time in milliseconds between - sends of client statistics to the server.</dd> + sends of client statistics to the server.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>statisticInterval</code> - is less than <code>-1</code>.</dd> + is less than <code>-1</code>.</dd> </dl> </li> </ul> @@ -807,7 +806,7 @@ Now, create the data region in the client cache using this new attributes ID. <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>group</code> - the server group that this pool will connect to. - If <code>null</code> or <code>""</code> then all servers will be connected to.</dd> + If <code>null</code> or <code>""</code> then all servers will be connected to.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> </dl> @@ -836,7 +835,7 @@ Now, create the data region in the client cache using this new attributes ID. <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if port is outside - the valid range of [0..65535] inclusive.</dd> + the valid range of [0..65535] inclusive.</dd> <dd><code>java.lang.IllegalStateException</code> - if a server has already been <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#addPoolServer-java.lang.String-int-"><code>added</code></a> to this factory.</dd> </dl> </li> @@ -864,7 +863,7 @@ Now, create the data region in the client cache using this new attributes ID. <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if port is outside - the valid range of [0..65535] inclusive.</dd> + the valid range of [0..65535] inclusive.</dd> <dd><code>java.lang.IllegalStateException</code> - if a locator has already been <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#addPoolLocator-java.lang.String-int-"><code>added</code></a> to this factory.</dd> </dl> </li> @@ -905,7 +904,7 @@ Now, create the data region in the client cache using this new attributes ID. <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>redundancyLevel</code> - is less than <code>-1</code>.</dd> + is less than <code>-1</code>.</dd> </dl> </li> </ul> @@ -928,7 +927,7 @@ Now, create the data region in the client cache using this new attributes ID. <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>messageTrackingTimeout</code> - is less than or equal to <code>0</code>.</dd> + is less than or equal to <code>0</code>.</dd> </dl> </li> </ul> @@ -945,12 +944,12 @@ Now, create the data region in the client cache using this new attributes ID. <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ackInterval</code> - number of milliseconds to wait before sending event - acknowledgements.</dd> + acknowledgements.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if <code>ackInterval</code> - is less than or equal to <code>0</code>.</dd> + is less than or equal to <code>0</code>.</dd> </dl> </li> </ul> @@ -968,7 +967,7 @@ Now, create the data region in the client cache using this new attributes ID. Using this information, the client routes the client cache operations directly to the server which is hosting the required partition for the cache operation using a single network hop. - This mode works best + This mode works best when <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html#setPoolMaxConnections-int-"><code>setPoolMaxConnections(int)</code></a> is set to <code>-1</code> which is the default. This mode causes the client to have more connections to the servers. @@ -978,7 +977,7 @@ Now, create the data region in the client cache using this new attributes ID. The client will use fewer network connections to the servers. <p> Caution: for <a href="../../../../../com/gemstone/gemfire/cache/DataPolicy.html#PARTITION"><code>partition</code></a> regions - with + with <a href="../../../../../com/gemstone/gemfire/cache/PartitionAttributesFactory.html#setLocalMaxMemory-int-"><code>local-max-memory</code></a> equal to zero, no cache operations mentioned above will be routed to those servers as they do not host any partitions.</div> @@ -1032,9 +1031,9 @@ Now, create the data region in the client cache using this new attributes ID. <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code><a href="../../../../../com/gemstone/gemfire/cache/CacheClosedException.html" title="class in com.gemstone.gemfire.cache">CacheClosedException</a></code> - if a cache has not been created - or the only created one is <a href="../../../../../com/gemstone/gemfire/cache/RegionService.html#isClosed--"><code>closed</code></a></dd> + or the only created one is <a href="../../../../../com/gemstone/gemfire/cache/RegionService.html#isClosed--"><code>closed</code></a></dd> <dd><code>java.lang.IllegalStateException</code> - if the cache was created by CacheFactory instead - of ClientCacheFactory</dd> + of ClientCacheFactory</dd> </dl> </li> </ul> @@ -1048,11 +1047,11 @@ Now, create the data region in the client cache using this new attributes ID. <div class="block">Sets the object preference to PdxInstance type. When a cached object that was serialized as a PDX is read from the cache a <a href="../../../../../com/gemstone/gemfire/pdx/PdxInstance.html" title="interface in com.gemstone.gemfire.pdx"><code>PdxInstance</code></a> will be returned instead of the actual domain class. - The PdxInstance is an interface that provides run time access to - the fields of a PDX without deserializing the entire PDX. - The PdxInstance implementation is a light weight wrapper - that simply refers to the raw bytes of the PDX that are kept - in the cache. Using this method applications can choose to + The PdxInstance is an interface that provides run time access to + the fields of a PDX without deserializing the entire PDX. + The PdxInstance implementation is a light weight wrapper + that simply refers to the raw bytes of the PDX that are kept + in the cache. Using this method applications can choose to access PdxInstance instead of Java object. <p>Note that a PdxInstance is only returned if a serialized PDX is found in the cache. If the cache contains a deserialized PDX, then a domain class instance is returned instead of a PdxInstance.</div> @@ -1062,7 +1061,7 @@ Now, create the data region in the client cache using this new attributes ID. <dt><span class="returnLabel">Returns:</span></dt> <dd>this ClientCacheFactory</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.6</dd> +<dd>GemFire 6.6</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/pdx/PdxInstance.html" title="interface in com.gemstone.gemfire.pdx"><code>PdxInstance</code></a></dd> </dl> @@ -1076,7 +1075,7 @@ Now, create the data region in the client cache using this new attributes ID. <h4>setPdxSerializer</h4> <pre>public <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html" title="class in com.gemstone.gemfire.cache.client">ClientCacheFactory</a> setPdxSerializer(<a href="../../../../../com/gemstone/gemfire/pdx/PdxSerializer.html" title="interface in com.gemstone.gemfire.pdx">PdxSerializer</a> serializer)</pre> <div class="block">Set the PDX serializer for the cache. If this serializer is set, - it will be consulted to see if it can serialize any domain classes which are + it will be consulted to see if it can serialize any domain classes which are added to the cache in portable data exchange format.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -1084,7 +1083,7 @@ Now, create the data region in the client cache using this new attributes ID. <dt><span class="returnLabel">Returns:</span></dt> <dd>this ClientCacheFactory</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.6</dd> +<dd>GemFire 6.6</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/pdx/PdxSerializer.html" title="interface in com.gemstone.gemfire.pdx"><code>PdxSerializer</code></a></dd> </dl> @@ -1101,16 +1100,16 @@ Now, create the data region in the client cache using this new attributes ID. serializing objects in the PDX format, the type definitions are persisted to disk. This setting controls which disk store is used for that persistence. - + <p> If not set, the metadata will go in the default disk store.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>diskStoreName</code> - the name of the disk store to use - for the PDX metadata.</dd> + for the PDX metadata.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>this ClientCacheFactory</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.6</dd> +<dd>GemFire 6.6</dd> </dl> </li> </ul> @@ -1122,7 +1121,7 @@ Now, create the data region in the client cache using this new attributes ID. <h4>setPdxPersistent</h4> <pre>public <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCacheFactory.html" title="class in com.gemstone.gemfire.cache.client">ClientCacheFactory</a> setPdxPersistent(boolean isPersistent)</pre> <div class="block">Control whether the type metadata for PDX objects is persisted to disk. - The default for this setting is false. + The default for this setting is false. If you are using persistent regions with PDX then you must set this to true. If you are using a WAN gateway with PDX then you should set this to true.</div> <dl> @@ -1131,7 +1130,7 @@ Now, create the data region in the client cache using this new attributes ID. <dt><span class="returnLabel">Returns:</span></dt> <dd>this ClientCacheFactory</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.6</dd> +<dd>GemFire 6.6</dd> </dl> </li> </ul> @@ -1152,11 +1151,11 @@ Now, create the data region in the client cache using this new attributes ID. <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>ignore</code> - <code>true</code> if fields not read during pdx deserialization should be ignored; - <code>false</code>, the default, if they should be preserved.</dd> + <code>false</code>, the default, if they should be preserved.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>this ClientCacheFactory</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.6</dd> +<dd>GemFire 6.6</dd> </dl> </li> </ul>
http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientNotReadyException.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientNotReadyException.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientNotReadyException.html index 867ea81..8cccc23 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientNotReadyException.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientNotReadyException.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>ClientNotReadyException (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>ClientNotReadyException (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ClientNotReadyException (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="ClientNotReadyException (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -147,7 +147,7 @@ extends <a href="../../../../../com/gemstone/gemfire/cache/OperationAbortedExcep <p>This exception was moved from the <code>util</code> package in 5.7.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../serialized-form.html#com.gemstone.gemfire.cache.client.ClientNotReadyException">Serialized Form</a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionFactory.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionFactory.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionFactory.html index 7a5da47..427375c 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionFactory.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionFactory.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>ClientRegionFactory (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>ClientRegionFactory (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ClientRegionFactory (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="ClientRegionFactory (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -133,7 +133,7 @@ var activeTableTab = "activeTableTab"; </PRE></div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> </dl> </li> </ul> @@ -183,7 +183,8 @@ var activeTableTab = "activeTableTab"; <tr id="i4" class="altColor"> <td class="colFirst"><code><a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionFactory.html" title="interface in com.gemstone.gemfire.cache.client">ClientRegionFactory</a><<a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionFactory.html#setCloningEnabled-boolean-">setCloningEnabled</a></span>(boolean cloningEnable)</code> -<div class="block">Sets cloning on region</div> +<div class="block">Sets cloning on region + Note: off-heap regions always behave as if cloning is enabled.</div> </td> </tr> <tr id="i5" class="rowColor"> @@ -625,7 +626,7 @@ var activeTableTab = "activeTableTab"; <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>concurrencyChecksEnabled</code> - whether to perform concurrency checks on operations</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>7.0</dd> +<dd>GemFire 7.0</dd> </dl> </li> </ul> @@ -689,7 +690,8 @@ var activeTableTab = "activeTableTab"; <li class="blockList"> <h4>setCloningEnabled</h4> <pre><a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionFactory.html" title="interface in com.gemstone.gemfire.cache.client">ClientRegionFactory</a><<a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../com/gemstone/gemfire/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>> setCloningEnabled(boolean cloningEnable)</pre> -<div class="block">Sets cloning on region</div> +<div class="block">Sets cloning on region + Note: off-heap regions always behave as if cloning is enabled.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>cloningEnable</code> - </dd> @@ -742,7 +744,7 @@ var activeTableTab = "activeTableTab"; <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to this RegionFactory instance</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>8.0</dd> +<dd>GemFire 8.0</dd> </dl> </li> </ul> @@ -793,7 +795,7 @@ var activeTableTab = "activeTableTab"; <dd><code><a href="../../../../../com/gemstone/gemfire/cache/RegionDestroyedException.html" title="class in com.gemstone.gemfire.cache">RegionDestroyedException</a></code> - if the parent region has been closed or destroyed</dd> <dd><code><a href="../../../../../com/gemstone/gemfire/cache/CacheClosedException.html" title="class in com.gemstone.gemfire.cache">CacheClosedException</a></code> - if the cache is closed</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>7.0</dd> +<dd>GemFire 7.0</dd> </dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionShortcut.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionShortcut.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionShortcut.html index 50535f0..723fef3 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionShortcut.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ClientRegionShortcut.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>ClientRegionShortcut (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>ClientRegionShortcut (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ClientRegionShortcut (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="ClientRegionShortcut (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -127,7 +127,7 @@ extends java.lang.Enum<<a href="../../../../../com/gemstone/gemfire/cache/cli string of each value.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> </dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableLocatorsException.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableLocatorsException.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableLocatorsException.html index 5c62f3d..954f95d 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableLocatorsException.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableLocatorsException.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>NoAvailableLocatorsException (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>NoAvailableLocatorsException (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NoAvailableLocatorsException (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="NoAvailableLocatorsException (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -136,7 +136,7 @@ extends <a href="../../../../../com/gemstone/gemfire/cache/client/ServerConnecti <div class="block">An exception indicating that there are no active locators available to connect to.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../serialized-form.html#com.gemstone.gemfire.cache.client.NoAvailableLocatorsException">Serialized Form</a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableServersException.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableServersException.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableServersException.html index b761465..57a1dbb 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableServersException.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/NoAvailableServersException.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>NoAvailableServersException (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>NoAvailableServersException (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NoAvailableServersException (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="NoAvailableServersException (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -136,7 +136,7 @@ extends <a href="../../../../../com/gemstone/gemfire/cache/client/ServerConnecti <div class="block">An exception indicating that there are no active servers available to connect to.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../serialized-form.html#com.gemstone.gemfire.cache.client.NoAvailableServersException">Serialized Form</a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/Pool.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/Pool.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/Pool.html index b7a0b0c..f424bae 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/Pool.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/Pool.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>Pool (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>Pool (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Pool (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="Pool (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab"; <a href="../../../../../com/gemstone/gemfire/cache/RegionFactory.html#setPoolName-java.lang.String-"><code>RegionFactory.setPoolName(java.lang.String)</code></a>.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> </dl> </li> </ul> @@ -519,7 +519,7 @@ var activeTableTab = "activeTableTab"; <div class="block">Returns true if single-hop optimisation is enabled on this pool.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/client/PoolFactory.html#setPRSingleHopEnabled-boolean-"><code>PoolFactory.setPRSingleHopEnabled(boolean)</code></a></dd> </dl> @@ -591,7 +591,7 @@ var activeTableTab = "activeTableTab"; <div class="block">Returns true if multiuser mode is enabled on this pool.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/client/PoolFactory.html#setMultiuserAuthentication-boolean-"><code>PoolFactory.setMultiuserAuthentication(boolean)</code></a></dd> </dl> @@ -739,7 +739,7 @@ var activeTableTab = "activeTableTab"; <dd><code>java.lang.IllegalStateException</code> - If called by a non-durable client or if invoked any time after invocation of <a href="../../../../../com/gemstone/gemfire/cache/client/ClientCache.html#readyForEvents--"><code>ClientCache.readyForEvents()</code></a>.</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>8.1</dd> +<dd>GemFire 8.1</dd> </dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolFactory.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolFactory.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolFactory.html index 1c1d399..2edb81d 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolFactory.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolFactory.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>PoolFactory (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>PoolFactory (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PoolFactory (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="PoolFactory (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -134,7 +134,7 @@ var activeTableTab = "activeTableTab"; </ul></div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> </dl> </li> </ul> @@ -705,7 +705,7 @@ var activeTableTab = "activeTableTab"; <p>Current value: <code>true</code>.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../constant-values.html#com.gemstone.gemfire.cache.client.PoolFactory.DEFAULT_PR_SINGLE_HOP_ENABLED">Constant Field Values</a></dd> </dl> @@ -722,7 +722,7 @@ var activeTableTab = "activeTableTab"; <p>Current value: <code>false</code>.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../constant-values.html#com.gemstone.gemfire.cache.client.PoolFactory.DEFAULT_MULTIUSER_AUTHENTICATION">Constant Field Values</a></dd> </dl> @@ -1221,7 +1221,7 @@ var activeTableTab = "activeTableTab"; <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> </dl> </li> </ul> @@ -1245,7 +1245,7 @@ var activeTableTab = "activeTableTab"; <dt><span class="returnLabel">Returns:</span></dt> <dd>a reference to <code>this</code></dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/client/ClientCache.html#createAuthenticatedView-java.util.Properties-"><code>ClientCache.createAuthenticatedView(java.util.Properties)</code></a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolManager.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolManager.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolManager.html index d8a48be..9730076 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolManager.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/PoolManager.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>PoolManager (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>PoolManager (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PoolManager (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="PoolManager (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -119,7 +119,7 @@ extends java.lang.Object</pre> To get rid of all created pool call <a href="../../../../../com/gemstone/gemfire/cache/client/PoolManager.html#close--"><code>close()</code></a>.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> </dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerConnectivityException.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerConnectivityException.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerConnectivityException.html index 31ae9a9..8836995 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerConnectivityException.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerConnectivityException.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>ServerConnectivityException (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>ServerConnectivityException (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ServerConnectivityException (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="ServerConnectivityException (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -137,7 +137,7 @@ extends <a href="../../../../../com/gemstone/gemfire/GemFireException.html" titl on specific failures.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../serialized-form.html#com.gemstone.gemfire.cache.client.ServerConnectivityException">Serialized Form</a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerOperationException.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerOperationException.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerOperationException.html index bc5c0f4..4d190a4 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerOperationException.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerOperationException.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>ServerOperationException (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>ServerOperationException (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ServerOperationException (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="ServerOperationException (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -137,7 +137,7 @@ extends <a href="../../../../../com/gemstone/gemfire/cache/client/ServerConnecti while processing an operation that was sent to it by a client.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../serialized-form.html#com.gemstone.gemfire.cache.client.ServerOperationException">Serialized Form</a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerRefusedConnectionException.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerRefusedConnectionException.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerRefusedConnectionException.html index 841883e..f6e89e0 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerRefusedConnectionException.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/ServerRefusedConnectionException.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>ServerRefusedConnectionException (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>ServerRefusedConnectionException (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ServerRefusedConnectionException (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="ServerRefusedConnectionException (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -142,7 +142,7 @@ extends <a href="../../../../../com/gemstone/gemfire/cache/OperationAbortedExcep to connect to a server, but the handshake was rejected.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../serialized-form.html#com.gemstone.gemfire.cache.client.ServerRefusedConnectionException">Serialized Form</a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/SubscriptionNotEnabledException.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/SubscriptionNotEnabledException.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/SubscriptionNotEnabledException.html index 4668efe..0c7e1ca 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/SubscriptionNotEnabledException.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/SubscriptionNotEnabledException.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:04 PDT 2016 --> -<title>SubscriptionNotEnabledException (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:15 PDT 2016 --> +<title>SubscriptionNotEnabledException (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="SubscriptionNotEnabledException (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="SubscriptionNotEnabledException (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -138,7 +138,7 @@ extends <a href="../../../../../com/gemstone/gemfire/cache/client/ServerConnecti such as <a href="../../../../../com/gemstone/gemfire/cache/Region.html#registerInterest-K-"><code>Region.registerInterest(Object)</code></a>.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>5.7</dd> +<dd>GemFire 5.7</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../serialized-form.html#com.gemstone.gemfire.cache.client.SubscriptionNotEnabledException">Serialized Form</a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-frame.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-frame.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-frame.html index a1f6f4a..5d4bde1 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-frame.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-frame.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:05 PDT 2016 --> -<title>com.gemstone.gemfire.cache.client (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:16 PDT 2016 --> +<title>com.gemstone.gemfire.cache.client (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-summary.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-summary.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-summary.html index 76df234..dd40861 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-summary.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-summary.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:05 PDT 2016 --> -<title>com.gemstone.gemfire.cache.client (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:16 PDT 2016 --> +<title>com.gemstone.gemfire.cache.client (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.gemstone.gemfire.cache.client (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="com.gemstone.gemfire.cache.client (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-tree.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-tree.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-tree.html index 022f37b..a498fe8 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-tree.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/client/package-tree.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:05 PDT 2016 --> -<title>com.gemstone.gemfire.cache.client Class Hierarchy (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:16 PDT 2016 --> +<title>com.gemstone.gemfire.cache.client Class Hierarchy (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.gemstone.gemfire.cache.client Class Hierarchy (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="com.gemstone.gemfire.cache.client Class Hierarchy (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceFactory.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceFactory.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceFactory.html index f68fdc1..743e512 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceFactory.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceFactory.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:03 PDT 2016 --> -<title>RebalanceFactory (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:14 PDT 2016 --> +<title>RebalanceFactory (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="RebalanceFactory (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="RebalanceFactory (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -104,7 +104,7 @@ var activeTableTab = "activeTableTab"; <div class="block">Factory for defining and starting a <a href="../../../../../com/gemstone/gemfire/cache/control/RebalanceOperation.html" title="interface in com.gemstone.gemfire.cache.control"><code>RebalanceOperation</code></a>.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.0</dd> +<dd>GemFire 6.0</dd> </dl> </li> </ul> @@ -178,7 +178,7 @@ var activeTableTab = "activeTableTab"; <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>regions</code> - A set containing the names of regions to include.</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> </dl> </li> </ul> @@ -196,7 +196,7 @@ var activeTableTab = "activeTableTab"; <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>regions</code> - A set containing the names of regions to exclude.</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.5</dd> +<dd>GemFire 6.5</dd> </dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceOperation.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceOperation.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceOperation.html index b48e803..5ec4640 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceOperation.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceOperation.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:03 PDT 2016 --> -<title>RebalanceOperation (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:14 PDT 2016 --> +<title>RebalanceOperation (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="RebalanceOperation (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="RebalanceOperation (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -104,7 +104,7 @@ var activeTableTab = "activeTableTab"; <div class="block">Operation for rebalancing resources used by the <a href="../../../../../com/gemstone/gemfire/cache/Cache.html" title="interface in com.gemstone.gemfire.cache"><code>Cache</code></a>.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.0</dd> +<dd>GemFire 6.0</dd> </dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceResults.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceResults.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceResults.html index ca16f86..87453a4 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceResults.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/RebalanceResults.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:03 PDT 2016 --> -<title>RebalanceResults (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:14 PDT 2016 --> +<title>RebalanceResults (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="RebalanceResults (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="RebalanceResults (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -104,7 +104,7 @@ var activeTableTab = "activeTableTab"; <div class="block">The results of rebalancing <code>Cache</code> resources.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.0</dd> +<dd>GemFire 6.0</dd> </dl> </li> </ul> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/control/ResourceManager.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/ResourceManager.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/ResourceManager.html index 134effa..3c043d0 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/ResourceManager.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/ResourceManager.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:03 PDT 2016 --> -<title>ResourceManager (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:14 PDT 2016 --> +<title>ResourceManager (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ResourceManager (Apache Geode 1.0.0-incubating.M2)"; + parent.document.title="ResourceManager (Apache Geode 1.0.0-incubating.M3)"; } } catch(err) { @@ -113,7 +113,7 @@ var activeTableTab = "activeTableTab"; percentage using <a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#setCriticalHeapPercentage-float-"><code>setCriticalHeapPercentage(float)</code></a>.</div> <dl> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.0</dd> +<dd>GemFire 6.0</dd> </dl> </li> </ul> @@ -376,7 +376,7 @@ var activeTableTab = "activeTableTab"; <dd><code>java.lang.IllegalStateException</code> - if the heapPercentage value is not >= 0 or <= 100 or when less than the current eviction heap percentage</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.0</dd> +<dd>GemFire 6.0</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#getCriticalHeapPercentage--"><code>getCriticalHeapPercentage()</code></a>, <a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#getEvictionHeapPercentage--"><code>getEvictionHeapPercentage()</code></a></dd> @@ -397,7 +397,7 @@ var activeTableTab = "activeTableTab"; <dd>either the current or recently used percentage of the maximum tenured heap</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.0</dd> +<dd>GemFire 6.0</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#setCriticalHeapPercentage-float-"><code>setCriticalHeapPercentage(float)</code></a></dd> </dl> @@ -437,7 +437,7 @@ var activeTableTab = "activeTableTab"; <dd><code>java.lang.IllegalStateException</code> - if the ofHeapPercentage value is not >= 0 or <= 100 or when less than the current eviction off-heap percentage</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>9.0</dd> +<dd>Geode 1.0</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#getCriticalOffHeapPercentage--"><code>getCriticalOffHeapPercentage()</code></a>, <a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#getEvictionOffHeapPercentage--"><code>getEvictionOffHeapPercentage()</code></a></dd> @@ -458,7 +458,7 @@ var activeTableTab = "activeTableTab"; <dd>either the current or recently used percentage of the maximum off-heap memory</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>9.0</dd> +<dd>Geode 1.0</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#setCriticalOffHeapPercentage-float-"><code>setCriticalOffHeapPercentage(float)</code></a></dd> </dl> @@ -490,7 +490,7 @@ var activeTableTab = "activeTableTab"; <dd><code>java.lang.IllegalStateException</code> - if the heapPercentage value is not >= 0 or <= 100 or when greater than the current critical heap percentage.</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.0</dd> +<dd>GemFire 6.0</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#getEvictionHeapPercentage--"><code>getEvictionHeapPercentage()</code></a>, <a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#getCriticalHeapPercentage--"><code>getCriticalHeapPercentage()</code></a></dd> @@ -511,7 +511,7 @@ var activeTableTab = "activeTableTab"; <dd>either the current or recently used percentage of the maximum tenured heap</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>6.0</dd> +<dd>GemFire 6.0</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#setEvictionHeapPercentage-float-"><code>setEvictionHeapPercentage(float)</code></a></dd> </dl> @@ -541,7 +541,7 @@ var activeTableTab = "activeTableTab"; <dd><code>java.lang.IllegalStateException</code> - if the offHeapPercentage value is not >= 0 or <= 100 or when greater than the current critical off-heap percentage.</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>9.0</dd> +<dd>Geode 1.0</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#getEvictionOffHeapPercentage--"><code>getEvictionOffHeapPercentage()</code></a>, <a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#getCriticalOffHeapPercentage--"><code>getCriticalOffHeapPercentage()</code></a></dd> @@ -562,7 +562,7 @@ var activeTableTab = "activeTableTab"; <dd>either the current or recently used percentage of the maximum off-heap memory</dd> <dt><span class="simpleTagLabel">Since:</span></dt> -<dd>9.0</dd> +<dd>Geode 1.0</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../com/gemstone/gemfire/cache/control/ResourceManager.html#setEvictionOffHeapPercentage-float-"><code>setEvictionOffHeapPercentage(float)</code></a></dd> </dl> http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/445e6338/releases/latest/javadoc/com/gemstone/gemfire/cache/control/package-frame.html ---------------------------------------------------------------------- diff --git a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/package-frame.html b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/package-frame.html index a1bbd42..89a176c 100644 --- a/releases/latest/javadoc/com/gemstone/gemfire/cache/control/package-frame.html +++ b/releases/latest/javadoc/com/gemstone/gemfire/cache/control/package-frame.html @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_66-internal) on Wed Apr 13 11:47:05 PDT 2016 --> -<title>com.gemstone.gemfire.cache.control (Apache Geode 1.0.0-incubating.M2)</title> -<meta name="date" content="2016-04-13"> +<!-- Generated by javadoc (1.8.0_77) on Mon Aug 01 17:02:16 PDT 2016 --> +<title>com.gemstone.gemfire.cache.control (Apache Geode 1.0.0-incubating.M3)</title> +<meta name="date" content="2016-08-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head>
