You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ra...@apache.org on 2014/05/31 18:26:02 UTC

svn commit: r1598886 [14/21] - in /curator/site/trunk: ./ apidocs/ apidocs/cache/ apidocs/cache/class-use/ apidocs/discovery/ apidocs/discovery/class-use/ apidocs/framework/ apidocs/framework/class-use/ apidocs/leader/ apidocs/leader/class-use/ apidocs...

Modified: curator/site/trunk/curator-framework/index.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/index.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/index.html (original)
+++ curator/site/trunk/curator-framework/index.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -322,7 +322,7 @@
                                   
             <div class="section">
 <h2>Framework<a name="Framework"></a></h2></div>
-<p>The Curator Framework is a highlevel API that greatly simplifies using ZooKeeper. It adds many features that build on ZooKeeper and handles the complexity of managing connections to the ZooKeeper cluster and retrying operations. Some of the features are:</p>
+<p>The Curator Framework is a high-level API that greatly simplifies using ZooKeeper. It adds many features that build on ZooKeeper and handles the complexity of managing connections to the ZooKeeper cluster and retrying operations. Some of the features are:</p>
 <ul>
 <li>Automatic connection management:
 <ul>
@@ -341,11 +341,11 @@
 <li>...</li></ul></li></ul>
 <div class="section">
 <h3>Allocating a Curator Framework Instance<a name="Allocating_a_Curator_Framework_Instance"></a></h3></div>
-<p>CuratorFrameworks are allocated using the CuratorFrameworkFactory which provides both factory methods and a builder for creating instances. IMPORTANT: CuratorFramework instances are fully threadsafe. You should share one CuratorFramework per ZooKeeper cluster in your application.</p>
+<p>CuratorFrameworks are allocated using the CuratorFrameworkFactory which provides both factory methods and a builder for creating instances. IMPORTANT: CuratorFramework instances are fully thread-safe. You should share one CuratorFramework per ZooKeeper cluster in your application.</p>
 <p>The factory methods (newClient()) provide a simplified way of creating an instance. The Builder gives control over all parameters. Once you have a CuratorFramework instance, you must call the start() method. At the end of your application, you should call close().</p>
 <div class="section">
 <h3>CuratorFramework API<a name="CuratorFramework_API"></a></h3></div>
-<p>The CuratorFramework uses a Fluent<s>style interface. Operations are constructed using builders returned by the CuratorFramework instance. When strung together, the methods form sentence</s>like statements. e.g.</p>
+<p>The CuratorFramework uses a Fluent-style interface. Operations are constructed using builders returned by the CuratorFramework instance. When strung together, the methods form sentence-like statements. e.g.</p>
 <div class="source">
 <pre>client.create().forPath(&quot;/head&quot;, new byte[0]);
 client.delete().inBackground().forPath(&quot;/head&quot;);
@@ -385,7 +385,7 @@ client.getData().watched().inBackground(
 <td>A background operation has completed or a watch has triggered. Examine the given event for details</td></tr></table>
 <div class="section">
 <h4>ClientEvent<a name="ClientEvent"></a></h4></div>
-<p>The ClientEvent object is a superset POJO that can hold every type of background notification and triggered watch. The useful fields of ClientEvent depend on the type of event which is exposed via the getType() method.</p>
+<p>The ClientEvent object is a super-set POJO that can hold every type of background notification and triggered watch. The useful fields of ClientEvent depend on the type of event which is exposed via the getType() method.</p>
 <table border="0" class="table table-striped">
 <tr class="a">
 <th><b>Event Type</b></th>

Modified: curator/site/trunk/curator-framework/integration.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/integration.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/integration.html (original)
+++ curator/site/trunk/curator-framework/integration.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Continuous Integration</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-framework/issue-tracking.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/issue-tracking.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/issue-tracking.html (original)
+++ curator/site/trunk/curator-framework/issue-tracking.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Issue Tracking</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-framework/license.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/license.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/license.html (original)
+++ curator/site/trunk/curator-framework/license.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Project License</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-framework/mail-lists.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/mail-lists.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/mail-lists.html (original)
+++ curator/site/trunk/curator-framework/mail-lists.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-framework/plugin-management.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/plugin-management.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/plugin-management.html (original)
+++ curator/site/trunk/curator-framework/plugin-management.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Project Plugin Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-framework/plugins.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/plugins.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/plugins.html (original)
+++ curator/site/trunk/curator-framework/plugins.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Project Build Plugins</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-framework/project-info.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/project-info.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/project-info.html (original)
+++ curator/site/trunk/curator-framework/project-info.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-framework/project-summary.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/project-summary.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/project-summary.html (original)
+++ curator/site/trunk/curator-framework/project-summary.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Project Summary</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -363,7 +363,7 @@
 <td>curator-framework</td></tr>
 <tr class="b">
 <td>Version</td>
-<td>2.5.0</td></tr>
+<td>2.5.1-SNAPSHOT</td></tr>
 <tr class="a">
 <td>Type</td>
 <td>bundle</td></tr>

Modified: curator/site/trunk/curator-framework/source-repository.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/source-repository.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/source-repository.html (original)
+++ curator/site/trunk/curator-framework/source-repository.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Source Repository</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-framework/team-list.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-framework/team-list.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-framework/team-list.html (original)
+++ curator/site/trunk/curator-framework/team-list.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Framework - Team list</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -50,7 +50,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/barrier.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/barrier.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/barrier.html (original)
+++ curator/site/trunk/curator-recipes/barrier.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/dependencies.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/dependencies.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/dependencies.html (original)
+++ curator/site/trunk/curator-recipes/dependencies.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Project Dependencies</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -345,7 +345,7 @@
 <tr class="a">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-framework">curator-framework</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-framework/LICENSE</td></tr>
 <tr class="b">
@@ -367,7 +367,7 @@
 <tr class="b">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-test">curator-test</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-test/LICENSE</td></tr>
 <tr class="a">
@@ -416,7 +416,7 @@
 <tr class="a">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-client">curator-client</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-client/LICENSE</td></tr>
 <tr class="b">
@@ -499,7 +499,7 @@
 <div class="section">
 <h3>Dependency Tree<a name="Dependency_Tree"></a></h3>
 <ul>
-<li>org.apache.curator:curator-recipes:bundle:2.5.0 <img id="_img1" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep0', '_img1' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep0" style="display:none">
+<li>org.apache.curator:curator-recipes:bundle:2.5.1-SNAPSHOT <img id="_img1" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep0', '_img1' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep0" style="display:none">
 <table border="0" class="table table-striped">
 <tr class="a">
 <th>Curator Recipes</th></tr>
@@ -509,7 +509,7 @@
 <p><b>URL: </b><a class="externalLink" href="http://curator.apache.org/curator-recipes">http://curator.apache.org/curator-recipes</a></p>
 <p><b>Project License: </b><a class="externalLink" href="file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-recipes/LICENSE">The Apache Software License, Version 2.0</a></p></td></tr></table></div>
 <ul>
-<li>org.apache.curator:curator-framework:jar:2.5.0 (compile) <img id="_img3" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep2', '_img3' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep2" style="display:none">
+<li>org.apache.curator:curator-framework:jar:2.5.1-SNAPSHOT (compile) <img id="_img3" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep2', '_img3' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep2" style="display:none">
 <table border="0" class="table table-striped">
 <tr class="a">
 <th>Curator Framework</th></tr>
@@ -519,7 +519,7 @@
 <p><b>URL: </b><a class="externalLink" href="http://curator.apache.org/curator-framework">http://curator.apache.org/curator-framework</a></p>
 <p><b>Project License: </b><a class="externalLink" href="file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-framework/LICENSE">The Apache Software License, Version 2.0</a></p></td></tr></table></div>
 <ul>
-<li>org.apache.curator:curator-client:jar:2.5.0 (compile) <img id="_img5" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep4', '_img5' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep4" style="display:none">
+<li>org.apache.curator:curator-client:jar:2.5.1-SNAPSHOT (compile) <img id="_img5" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep4', '_img5' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep4" style="display:none">
 <table border="0" class="table table-striped">
 <tr class="a">
 <th>Curator Client</th></tr>
@@ -528,7 +528,7 @@
 <p><b>Description: </b>Low-level API</p>
 <p><b>URL: </b><a class="externalLink" href="http://curator.apache.org/curator-client">http://curator.apache.org/curator-client</a></p>
 <p><b>Project License: </b><a class="externalLink" href="file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-client/LICENSE">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li></ul></li>
-<li>org.apache.curator:curator-test:jar:2.5.0 (test) <img id="_img7" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep6', '_img7' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep6" style="display:none">
+<li>org.apache.curator:curator-test:jar:2.5.1-SNAPSHOT (test) <img id="_img7" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep6', '_img7' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep6" style="display:none">
 <table border="0" class="table table-striped">
 <tr class="a">
 <th>Curator Testing</th></tr>
@@ -934,15 +934,15 @@
 <td>-</td>
 <td><a class="externalLink" href="http://repo.maven.apache.org/maven2/org/apache/commons/commons-math/2.2/commons-math-2.2.jar"><img alt="Found at http://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td></tr>
 <tr class="b">
-<td>org.apache.curator:curator-client:jar:2.5.0</td>
+<td>org.apache.curator:curator-client:jar:2.5.1-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="a">
-<td>org.apache.curator:curator-framework:jar:2.5.0</td>
+<td>org.apache.curator:curator-framework:jar:2.5.1-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="b">
-<td>org.apache.curator:curator-test:jar:2.5.0</td>
+<td>org.apache.curator:curator-test:jar:2.5.1-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="a">

Modified: curator/site/trunk/curator-recipes/dependency-convergence.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/dependency-convergence.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/dependency-convergence.html (original)
+++ curator/site/trunk/curator-recipes/dependency-convergence.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Reactor Dependency Convergence</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -468,7 +468,7 @@
 <td>
 <table border="0" class="table table-striped">
 <tr class="b">
-<td width="25%">2.5.0</td>
+<td width="25%">2.5.1-SNAPSHOT</td>
 <td>
 <ol style="list-style-type: lower-alpha">
 <li><a class="externalLink" href="http://curator.apache.org/curator-framework">org.apache.curator:curator-framework</a></li></ol></td></tr></table></td></tr></table></div>
@@ -480,7 +480,7 @@
 <td>
 <table border="0" class="table table-striped">
 <tr class="b">
-<td width="25%">2.5.0</td>
+<td width="25%">2.5.1-SNAPSHOT</td>
 <td>
 <ol style="list-style-type: lower-alpha">
 <li><a class="externalLink" href="http://curator.apache.org/curator-recipes">org.apache.curator:curator-recipes</a></li></ol></td></tr></table></td></tr></table></div>
@@ -492,7 +492,7 @@
 <td>
 <table border="0" class="table table-striped">
 <tr class="b">
-<td width="25%">2.5.0</td>
+<td width="25%">2.5.1-SNAPSHOT</td>
 <td>
 <ol style="list-style-type: lower-alpha">
 <li><a class="externalLink" href="http://curator.apache.org/curator-examples">org.apache.curator:curator-examples</a></li>
@@ -505,7 +505,7 @@
 <td>
 <table border="0" class="table table-striped">
 <tr class="b">
-<td width="25%">2.5.0</td>
+<td width="25%">2.5.1-SNAPSHOT</td>
 <td>
 <ol style="list-style-type: lower-alpha">
 <li><a class="externalLink" href="http://curator.apache.org/curator-client">org.apache.curator:curator-client</a></li>
@@ -522,7 +522,7 @@
 <td>
 <table border="0" class="table table-striped">
 <tr class="b">
-<td width="25%">2.5.0</td>
+<td width="25%">2.5.1-SNAPSHOT</td>
 <td>
 <ol style="list-style-type: lower-alpha">
 <li><a class="externalLink" href="http://curator.apache.org/curator-examples">org.apache.curator:curator-examples</a></li>

Modified: curator/site/trunk/curator-recipes/dependency-info.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/dependency-info.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/dependency-info.html (original)
+++ curator/site/trunk/curator-recipes/dependency-info.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Dependency Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -331,37 +331,37 @@
 <pre>&lt;dependency&gt;
   &lt;groupId&gt;org.apache.curator&lt;/groupId&gt;
   &lt;artifactId&gt;curator-recipes&lt;/artifactId&gt;
-  &lt;version&gt;2.5.0&lt;/version&gt;
+  &lt;version&gt;2.5.1-SNAPSHOT&lt;/version&gt;
   &lt;type&gt;bundle&lt;/type&gt;
 &lt;/dependency&gt;</pre></div></div>
 <div class="section">
 <h3>Apache Buildr<a name="Apache_Buildr"></a></h3><a name="Apache_Buildr"></a>
 <div class="source">
-<pre>'org.apache.curator:curator-recipes:bundle:2.5.0'</pre></div></div>
+<pre>'org.apache.curator:curator-recipes:bundle:2.5.1-SNAPSHOT'</pre></div></div>
 <div class="section">
 <h3>Apache Ant<a name="Apache_Ant"></a></h3><a name="Apache_Ant"></a>
 <div class="source">
-<pre>&lt;dependency org=&quot;org.apache.curator&quot; name=&quot;curator-recipes&quot; rev=&quot;2.5.0&quot;&gt;
+<pre>&lt;dependency org=&quot;org.apache.curator&quot; name=&quot;curator-recipes&quot; rev=&quot;2.5.1-SNAPSHOT&quot;&gt;
   &lt;artifact name=&quot;curator-recipes&quot; type=&quot;bundle&quot; /&gt;
 &lt;/dependency&gt;</pre></div></div>
 <div class="section">
 <h3>Groovy Grape<a name="Groovy_Grape"></a></h3><a name="Groovy_Grape"></a>
 <div class="source">
 <pre>@Grapes(
-@Grab(group='org.apache.curator', module='curator-recipes', version='2.5.0')
+@Grab(group='org.apache.curator', module='curator-recipes', version='2.5.1-SNAPSHOT')
 )</pre></div></div>
 <div class="section">
 <h3>Grails<a name="Grails"></a></h3><a name="Grails"></a>
 <div class="source">
-<pre>compile 'org.apache.curator:curator-recipes:2.5.0'</pre></div></div>
+<pre>compile 'org.apache.curator:curator-recipes:2.5.1-SNAPSHOT'</pre></div></div>
 <div class="section">
 <h3>Leiningen<a name="Leiningen"></a></h3><a name="Leiningen"></a>
 <div class="source">
-<pre>[org.apache.curator/curator-recipes &quot;2.5.0&quot;]</pre></div></div>
+<pre>[org.apache.curator/curator-recipes &quot;2.5.1-SNAPSHOT&quot;]</pre></div></div>
 <div class="section">
 <h3>SBT<a name="SBT"></a></h3><a name="SBT"></a>
 <div class="source">
-<pre>libraryDependencies += &quot;org.apache.curator&quot; %% &quot;curator-recipes&quot; % &quot;2.5.0&quot;</pre></div></div></div>
+<pre>libraryDependencies += &quot;org.apache.curator&quot; %% &quot;curator-recipes&quot; % &quot;2.5.1-SNAPSHOT&quot;</pre></div></div></div>
                   </div>
             </div>
           </div>

Modified: curator/site/trunk/curator-recipes/dependency-management.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/dependency-management.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/dependency-management.html (original)
+++ curator/site/trunk/curator-recipes/dependency-management.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Project Dependency Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -386,37 +386,37 @@
 <tr class="b">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-client">curator-client</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-client/LICENSE</td></tr>
 <tr class="a">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-framework">curator-framework</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-framework/LICENSE</td></tr>
 <tr class="b">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-recipes">curator-recipes</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-recipes/LICENSE</td></tr>
 <tr class="a">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-test">curator-test</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-test/LICENSE</td></tr>
 <tr class="b">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-x-discovery">curator-x-discovery</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-x-discovery/LICENSE</td></tr>
 <tr class="a">
 <td>org.apache.curator</td>
 <td><a class="externalLink" href="http://curator.apache.org/curator-x-discovery-server">curator-x-discovery-server</a></td>
-<td>2.5.0</td>
+<td>2.5.1-SNAPSHOT</td>
 <td>jar</td>
 <td>file:///Users/jordanzimmerman/dev/oss/apache/curator/curator-x-discovery-server/LICENSE</td></tr>
 <tr class="b">

Modified: curator/site/trunk/curator-recipes/distributed-atomic-long.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/distributed-atomic-long.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/distributed-atomic-long.html (original)
+++ curator/site/trunk/curator-recipes/distributed-atomic-long.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/distributed-delay-queue.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/distributed-delay-queue.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/distributed-delay-queue.html (original)
+++ curator/site/trunk/curator-recipes/distributed-delay-queue.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -326,7 +326,7 @@
             <div class="section">
 <h2>Distributed Delay Queue<a name="Distributed_Delay_Queue"></a></h2></div>
 <div class="section">
-<h3><b>IMPORTANT</b>  We recommend that you do NOT use ZooKeeper for Queues. Please see <a class="externalLink" href="https://cwiki.apache.org/confluence/display/CURATOR/TN4">Tech Note 4</a> for details.<a name="IMPORTANT__We_recommend_that_you_do_NOT_use_ZooKeeper_for_Queues._Please_see_Tech_Note_4_for_details."></a></h3></div>
+<h3><b>IMPORTANT</b> - We recommend that you do NOT use ZooKeeper for Queues. Please see <a class="externalLink" href="https://cwiki.apache.org/confluence/display/CURATOR/TN4">Tech Note 4</a> for details.<a name="IMPORTANT_-_We_recommend_that_you_do_NOT_use_ZooKeeper_for_Queues._Please_see_Tech_Note_4_for_details."></a></h3></div>
 <div class="section">
 <h3>Description<a name="Description"></a></h3></div>
 <p>An implementation of a Distributed Delay Queue. A Delay Queue is similar to a Priority Queue. When items are added to the queue, a delay value is given. The item will not be sent to a consumer until the time elapses.</p>
@@ -367,7 +367,7 @@ DistributedDelayQueue&lt;MessageType&gt;
 <p>The consumer (<tt>QueueConsumer.consumeMessage()</tt>) will get called as messages arrive. <tt>delayUntilEpoch</tt> is a future epoch (milliseconds) when this item will be available to consumers.</p>
 <div class="section">
 <h3>Lock Safety<a name="Lock_Safety"></a></h3></div>
-<p>In the general usage case, the message is removed from the queue prior to the consumer being called. A more atomic mode is provided that removes the item from the queue only after the consumer successfully returns. To enable this mode, call the <tt>lockPath()</tt> method of the Queue Builder. This uses a lock to make the message recoverable. A lock is held while the message is being processed  this prevents other processes from taking the message. The message will not be removed from the queue until the consumer functor returns. Thus, if there is a failure or the process dies, the message will get sent to another process. There is a small performance penalty for this behavior however.</p>
+<p>In the general usage case, the message is removed from the queue prior to the consumer being called. A more atomic mode is provided that removes the item from the queue only after the consumer successfully returns. To enable this mode, call the <tt>lockPath()</tt> method of the Queue Builder. This uses a lock to make the message recoverable. A lock is held while the message is being processed - this prevents other processes from taking the message. The message will not be removed from the queue until the consumer functor returns. Thus, if there is a failure or the process dies, the message will get sent to another process. There is a small performance penalty for this behavior however.</p>
 <div class="section">
 <h3>Data Format<a name="Data_Format"></a></h3></div>
 <p>Same as <a href="distributed-queue.html">Distributed Queue</a>.</p>

Modified: curator/site/trunk/curator-recipes/distributed-id-queue.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/distributed-id-queue.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/distributed-id-queue.html (original)
+++ curator/site/trunk/curator-recipes/distributed-id-queue.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -326,7 +326,7 @@
             <div class="section">
 <h2>Distributed ID Queue<a name="Distributed_ID_Queue"></a></h2></div>
 <div class="section">
-<h3><b>IMPORTANT</b>  We recommend that you do NOT use ZooKeeper for Queues. Please see <a class="externalLink" href="https://cwiki.apache.org/confluence/display/CURATOR/TN4">Tech Note 4</a> for details.<a name="IMPORTANT__We_recommend_that_you_do_NOT_use_ZooKeeper_for_Queues._Please_see_Tech_Note_4_for_details."></a></h3></div>
+<h3><b>IMPORTANT</b> - We recommend that you do NOT use ZooKeeper for Queues. Please see <a class="externalLink" href="https://cwiki.apache.org/confluence/display/CURATOR/TN4">Tech Note 4</a> for details.<a name="IMPORTANT_-_We_recommend_that_you_do_NOT_use_ZooKeeper_for_Queues._Please_see_Tech_Note_4_for_details."></a></h3></div>
 <div class="section">
 <h3>Description<a name="Description"></a></h3></div>
 <p>This is an alternate version of <a href="distributed-queue.html">Distributed Queue</a> that supports assigning IDs to the items added to the queue. Items put into the queue are guaranteed to be ordered (by means of ZK's PERSISTENTSEQUENTIAL node). If a single consumer takes items out of the queue, they will be ordered FIFO. If ordering is important, use a LeaderSelector to nominate a single consumer.</p>

Modified: curator/site/trunk/curator-recipes/distributed-priority-queue.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/distributed-priority-queue.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/distributed-priority-queue.html (original)
+++ curator/site/trunk/curator-recipes/distributed-priority-queue.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -326,7 +326,7 @@
             <div class="section">
 <h2>Distributed Priority Queue<a name="Distributed_Priority_Queue"></a></h2></div>
 <div class="section">
-<h3><b>IMPORTANT</b>  We recommend that you do NOT use ZooKeeper for Queues. Please see <a class="externalLink" href="https://cwiki.apache.org/confluence/display/CURATOR/TN4">Tech Note 4</a> for details.<a name="IMPORTANT__We_recommend_that_you_do_NOT_use_ZooKeeper_for_Queues._Please_see_Tech_Note_4_for_details."></a></h3></div>
+<h3><b>IMPORTANT</b> - We recommend that you do NOT use ZooKeeper for Queues. Please see <a class="externalLink" href="https://cwiki.apache.org/confluence/display/CURATOR/TN4">Tech Note 4</a> for details.<a name="IMPORTANT_-_We_recommend_that_you_do_NOT_use_ZooKeeper_for_Queues._Please_see_Tech_Note_4_for_details."></a></h3></div>
 <div class="section">
 <h3>Description<a name="Description"></a></h3></div>
 <p>An implementation of the Distributed Priority Queue ZK recipe.</p>
@@ -383,7 +383,7 @@ minItemsBeforeRefresh - minimum items to
 <p>The consumer (<tt>QueueConsumer.consumeMessage()</tt>) will get called as messages arrive.</p>
 <div class="section">
 <h3>Lock Safety<a name="Lock_Safety"></a></h3></div>
-<p>In the general usage case, the message is removed from the queue prior to the consumer being called. A more atomic mode is provided that removes the item from the queue only after the consumer successfully returns. To enable this mode, call the <tt>lockPath()</tt> method of the Queue Builder. This uses a lock to make the message recoverable. A lock is held while the message is being processed  this prevents other processes from taking the message. The message will not be removed from the queue until the consumer functor returns. Thus, if there is a failure or the process dies, the message will get sent to another process. There is a small performance penalty for this behavior however.</p>
+<p>In the general usage case, the message is removed from the queue prior to the consumer being called. A more atomic mode is provided that removes the item from the queue only after the consumer successfully returns. To enable this mode, call the <tt>lockPath()</tt> method of the Queue Builder. This uses a lock to make the message recoverable. A lock is held while the message is being processed - this prevents other processes from taking the message. The message will not be removed from the queue until the consumer functor returns. Thus, if there is a failure or the process dies, the message will get sent to another process. There is a small performance penalty for this behavior however.</p>
 <div class="section">
 <h3>Data Format<a name="Data_Format"></a></h3></div>
 <p>Same as <a href="distributed-queue.html">Distributed Queue</a>.</p>

Modified: curator/site/trunk/curator-recipes/distributed-queue.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/distributed-queue.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/distributed-queue.html (original)
+++ curator/site/trunk/curator-recipes/distributed-queue.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -326,7 +326,7 @@
             <div class="section">
 <h2>Distributed Queue<a name="Distributed_Queue"></a></h2></div>
 <div class="section">
-<h3><b>IMPORTANT</b>  We recommend that you do NOT use ZooKeeper for Queues. Please see <a class="externalLink" href="https://cwiki.apache.org/confluence/display/CURATOR/TN4">Tech Note 4</a> for details.<a name="IMPORTANT__We_recommend_that_you_do_NOT_use_ZooKeeper_for_Queues._Please_see_Tech_Note_4_for_details."></a></h3></div>
+<h3><b>IMPORTANT</b> - We recommend that you do NOT use ZooKeeper for Queues. Please see <a class="externalLink" href="https://cwiki.apache.org/confluence/display/CURATOR/TN4">Tech Note 4</a> for details.<a name="IMPORTANT_-_We_recommend_that_you_do_NOT_use_ZooKeeper_for_Queues._Please_see_Tech_Note_4_for_details."></a></h3></div>
 <div class="section">
 <h3>Description<a name="Description"></a></h3></div>
 <p>An implementation of the Distributed Queue ZK recipe. Items put into the queue are guaranteed to be ordered (by means of ZK's PERSISTENTSEQUENTIAL node). If a single consumer takes items out of the queue, they will be ordered FIFO. If ordering is important, use a LeaderSelector to nominate a single consumer.</p>
@@ -367,7 +367,7 @@ DistributedQueue&lt;MessageType queue = 
 <p>Your consumer (<tt>QueueConsumer.consumeMessage()</tt>) will get called as messages arrive.</p>
 <div class="section">
 <h3>Lock Safety<a name="Lock_Safety"></a></h3></div>
-<p>In the general usage case, the message is removed from the queue prior to the consumer being called. A more atomic mode is provided that removes the item from the queue only after the consumer successfully returns. To enable this mode, call the <tt>lockPath()</tt> method of the Queue Builder. This uses a lock to make the message recoverable. A lock is held while the message is being processed  this prevents other processes from taking the message. The message will not be removed from the queue until the consumer functor returns. Thus, if there is a failure or the process dies, the message will get sent to another process. There is a small performance penalty for this behavior however.</p>
+<p>In the general usage case, the message is removed from the queue prior to the consumer being called. A more atomic mode is provided that removes the item from the queue only after the consumer successfully returns. To enable this mode, call the <tt>lockPath()</tt> method of the Queue Builder. This uses a lock to make the message recoverable. A lock is held while the message is being processed - this prevents other processes from taking the message. The message will not be removed from the queue until the consumer functor returns. Thus, if there is a failure or the process dies, the message will get sent to another process. There is a small performance penalty for this behavior however.</p>
 <div class="section">
 <h3>Data Format<a name="Data_Format"></a></h3></div>
 <p>The Distributed queue writes messages using this format:</p>
@@ -395,7 +395,7 @@ DistributedQueue&lt;MessageType queue = 
 <tr class="b">
 <td>9  n</td>
 <td>...</td>
-<td>Next set of opcode<s>size</s>bytes until end of data</td></tr></table>
+<td>Next set of opcode-size-bytes until end of data</td></tr></table>
 <div class="section">
 <h3>Error Handling<a name="Error_Handling"></a></h3></div>
 <p>The <tt>QueueConsumer</tt> class extends <tt>ConnectionStateListener</tt>. When the queue is started, it adds the listener to the Curator instance. Users of the <tt>DistributedQueue</tt> must pay attention to any connection state changes.</p>

Modified: curator/site/trunk/curator-recipes/distribution-management.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/distribution-management.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/distribution-management.html (original)
+++ curator/site/trunk/curator-recipes/distribution-management.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Project Distribution Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/double-barrier.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/double-barrier.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/double-barrier.html (original)
+++ curator/site/trunk/curator-recipes/double-barrier.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/index.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/index.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/index.html (original)
+++ curator/site/trunk/curator-recipes/index.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -330,61 +330,61 @@
 <tr class="a">
 <th><b>Elections</b></th></tr>
 <tr class="b">
-<td><a href="leader-latch.html">Leader Latch</a>  In distributed computing, leader election is the process of designating a single process as the organizer of some task distributed among several computers (nodes). Before the task is begun, all network nodes are unaware which node will serve as the &quot;leader,&quot; or coordinator, of the task. After a leader election algorithm has been run, however, each node throughout the network recognizes a particular, unique node as the task leader.</td></tr>
+<td><a href="leader-latch.html">Leader Latch</a> - In distributed computing, leader election is the process of designating a single process as the organizer of some task distributed among several computers (nodes). Before the task is begun, all network nodes are unaware which node will serve as the &quot;leader,&quot; or coordinator, of the task. After a leader election algorithm has been run, however, each node throughout the network recognizes a particular, unique node as the task leader.</td></tr>
 <tr class="a">
-<td><a href="leader-election.html">Leader Election</a>  Initial Curator leader election recipe.</td></tr></table>
+<td><a href="leader-election.html">Leader Election</a> - Initial Curator leader election recipe.</td></tr></table>
 <table border="0" class="table table-striped">
 <tr class="a">
 <th><b>Locks</b></th></tr>
 <tr class="b">
-<td><a href="shared-reentrant-lock.html">Shared Reentrant Lock</a>  Fully distributed locks that are globally synchronous, meaning at any snapshot in time no two clients think they hold the same lock.</td></tr>
+<td><a href="shared-reentrant-lock.html">Shared Reentrant Lock</a> - Fully distributed locks that are globally synchronous, meaning at any snapshot in time no two clients think they hold the same lock.</td></tr>
 <tr class="a">
-<td><a href="shared-lock.html">Shared Lock</a>  Similar to Shared Reentrant Lock but not reentrant.</td></tr>
+<td><a href="shared-lock.html">Shared Lock</a> - Similar to Shared Reentrant Lock but not reentrant.</td></tr>
 <tr class="b">
-<td><a href="shared-reentrant-read-write-lock.html">Shared Reentrant Read Write Lock</a> <s> A re</s>entrant read/write mutex that works across JVMs. A read write lock maintains a pair of associated locks, one for readonly operations and one for writing. The read lock may be held simultaneously by multiple reader processes, so long as there are no writers. The write lock is exclusive.</td></tr>
+<td><a href="shared-reentrant-read-write-lock.html">Shared Reentrant Read Write Lock</a> - A re-entrant read/write mutex that works across JVMs. A read write lock maintains a pair of associated locks, one for read-only operations and one for writing. The read lock may be held simultaneously by multiple reader processes, so long as there are no writers. The write lock is exclusive.</td></tr>
 <tr class="a">
-<td><a href="shared-semaphore.html">Shared Semaphore</a> <s> A counting semaphore that works across JVMs. All processes in all JVMs that use the same lock path will achieve an inter</s>process limited set of leases. Further, this semaphore is mostly &quot;fair&quot;  each user will get a lease in the order requested (from ZK's point of view).</td></tr>
+<td><a href="shared-semaphore.html">Shared Semaphore</a> - A counting semaphore that works across JVMs. All processes in all JVMs that use the same lock path will achieve an inter-process limited set of leases. Further, this semaphore is mostly &quot;fair&quot; - each user will get a lease in the order requested (from ZK's point of view).</td></tr>
 <tr class="b">
-<td><a href="multi-shared-lock.html">Multi Shared Lock</a>  A container that manages multiple locks as a single entity. When acquire() is called, all the locks are acquired. If that fails, any paths that were acquired are released. Similarly, when release() is called, all locks are released (failures are ignored).</td></tr></table>
+<td><a href="multi-shared-lock.html">Multi Shared Lock</a> - A container that manages multiple locks as a single entity. When acquire() is called, all the locks are acquired. If that fails, any paths that were acquired are released. Similarly, when release() is called, all locks are released (failures are ignored).</td></tr></table>
 <table border="0" class="table table-striped">
 <tr class="a">
 <th><b>Barriers</b></th></tr>
 <tr class="b">
-<td><a href="barrier.html">Barrier</a>  Distributed systems use barriers to block processing of a set of nodes until a condition is met at which time all the nodes are allowed to proceed.</td></tr>
+<td><a href="barrier.html">Barrier</a> - Distributed systems use barriers to block processing of a set of nodes until a condition is met at which time all the nodes are allowed to proceed.</td></tr>
 <tr class="a">
-<td><a href="double-barrier.html">Double Barrier</a>  Double barriers enable clients to synchronize the beginning and the end of a computation. When enough processes have joined the barrier, processes start their computation and leave the barrier once they have finished.</td></tr></table>
+<td><a href="double-barrier.html">Double Barrier</a> - Double barriers enable clients to synchronize the beginning and the end of a computation. When enough processes have joined the barrier, processes start their computation and leave the barrier once they have finished.</td></tr></table>
 <table border="0" class="table table-striped">
 <tr class="a">
 <th><b>Counters</b></th></tr>
 <tr class="b">
-<td><a href="shared-counter.html">Shared Counter</a> <s> Manages a shared integer. All clients watching the same path will have the up</s>todate value of the shared integer (considering ZK's normal consistency guarantees).</td></tr>
+<td><a href="shared-counter.html">Shared Counter</a> - Manages a shared integer. All clients watching the same path will have the up-to-date value of the shared integer (considering ZK's normal consistency guarantees).</td></tr>
 <tr class="a">
-<td><a href="distributed-atomic-long.html">Distributed Atomic Long</a>  A counter that attempts atomic increments. It first tries using optimistic locking. If that fails, an optional InterProcessMutex is taken. For both optimistic and mutex, a retry policy is used to retry the increment.</td></tr></table>
+<td><a href="distributed-atomic-long.html">Distributed Atomic Long</a> - A counter that attempts atomic increments. It first tries using optimistic locking. If that fails, an optional InterProcessMutex is taken. For both optimistic and mutex, a retry policy is used to retry the increment.</td></tr></table>
 <table border="0" class="table table-striped">
 <tr class="a">
 <th><b>Caches</b></th></tr>
 <tr class="b">
-<td><a href="path-cache.html">Path Cache</a>  A Path Cache is used to watch a ZNode. Whenever a child is added, updated or removed, the Path Cache will change its state to contain the current set of children, the children's data and the children's state. Path caches in the Curator Framework are provided by the PathChildrenCache class. Changes to the path are passed to registered PathChildrenCacheListener instances.</td></tr>
+<td><a href="path-cache.html">Path Cache</a> - A Path Cache is used to watch a ZNode. Whenever a child is added, updated or removed, the Path Cache will change its state to contain the current set of children, the children's data and the children's state. Path caches in the Curator Framework are provided by the PathChildrenCache class. Changes to the path are passed to registered PathChildrenCacheListener instances.</td></tr>
 <tr class="a">
-<td><a href="node-cache.html">Node Cache</a>  A utility that attempts to keep the data from a node locally cached. This class will watch the node, respond to update/create/delete events, pull down the data, etc. You can register a listener that will get notified when changes occur.</td></tr></table>
+<td><a href="node-cache.html">Node Cache</a> - A utility that attempts to keep the data from a node locally cached. This class will watch the node, respond to update/create/delete events, pull down the data, etc. You can register a listener that will get notified when changes occur.</td></tr></table>
 <table border="0" class="table table-striped">
 <tr class="a">
 <th><b>Nodes</b></th></tr>
 <tr class="b">
-<td><a href="persistent-ephemeral-node.html">Persistent Ephemeral Node</a>  An ephemeral node that attempts to stay present in ZooKeeper, even through connection and session interruptions..</td></tr></table>
+<td><a href="persistent-ephemeral-node.html">Persistent Ephemeral Node</a> - An ephemeral node that attempts to stay present in ZooKeeper, even through connection and session interruptions..</td></tr></table>
 <table border="0" class="table table-striped">
 <tr class="a">
 <th><b>Queues</b></th></tr>
 <tr class="b">
-<td><a href="distributed-queue.html">Distributed Queue</a>  An implementation of the Distributed Queue ZK recipe. Items put into the queue are guaranteed to be ordered (by means of ZK's PERSISTENTSEQUENTIAL node). If a single consumer takes items out of the queue, they will be ordered FIFO. If ordering is important, use a LeaderSelector to nominate a single consumer.</td></tr>
+<td><a href="distributed-queue.html">Distributed Queue</a> - An implementation of the Distributed Queue ZK recipe. Items put into the queue are guaranteed to be ordered (by means of ZK's PERSISTENTSEQUENTIAL node). If a single consumer takes items out of the queue, they will be ordered FIFO. If ordering is important, use a LeaderSelector to nominate a single consumer.</td></tr>
 <tr class="a">
-<td><a href="distributed-id-queue.html">Distributed Id Queue</a>  A version of DistributedQueue that allows IDs to be associated with queue items. Items can then be removed from the queue if needed.</td></tr>
+<td><a href="distributed-id-queue.html">Distributed Id Queue</a> - A version of DistributedQueue that allows IDs to be associated with queue items. Items can then be removed from the queue if needed.</td></tr>
 <tr class="b">
-<td><a href="distributed-priority-queue.html">Distributed Priority Queue</a>  An implementation of the Distributed Priority Queue ZK recipe.</td></tr>
+<td><a href="distributed-priority-queue.html">Distributed Priority Queue</a> - An implementation of the Distributed Priority Queue ZK recipe.</td></tr>
 <tr class="a">
-<td><a href="distributed-delay-queue.html">Distributed Delay Queue</a>  An implementation of a Distributed Delay Queue.</td></tr>
+<td><a href="distributed-delay-queue.html">Distributed Delay Queue</a> - An implementation of a Distributed Delay Queue.</td></tr>
 <tr class="b">
-<td><a href="simple-distributed-queue.html">Simple Distributed Queue</a> <s> A drop</s>in replacement for the DistributedQueue that comes with the ZK distribution.</td></tr></table>
+<td><a href="simple-distributed-queue.html">Simple Distributed Queue</a> - A drop-in replacement for the DistributedQueue that comes with the ZK distribution.</td></tr></table>
                   </div>
             </div>
           </div>

Modified: curator/site/trunk/curator-recipes/integration.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/integration.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/integration.html (original)
+++ curator/site/trunk/curator-recipes/integration.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Continuous Integration</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/issue-tracking.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/issue-tracking.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/issue-tracking.html (original)
+++ curator/site/trunk/curator-recipes/issue-tracking.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Issue Tracking</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/leader-election.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/leader-election.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/leader-election.html (original)
+++ curator/site/trunk/curator-recipes/leader-election.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/leader-latch.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/leader-latch.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/leader-latch.html (original)
+++ curator/site/trunk/curator-recipes/leader-latch.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -392,7 +392,7 @@ reached zero or the instances was closed
 </pre></div>
 <div class="section">
 <h3>Error Handling<a name="Error_Handling"></a></h3></div>
-<p>LeaderLatch instances add a ConnectionStateListener to watch for connection problems. If SUSPENDED or LOST is reported, the LeaderLatch that is the leader will report that it is no longer the leader (i.e. there will not be a leader until the connection is reestablished). If a LOST connection is RECONNECTED, the LeaderLatch will delete its previous ZNode and create a new one.</p>
+<p>LeaderLatch instances add a ConnectionStateListener to watch for connection problems. If SUSPENDED or LOST is reported, the LeaderLatch that is the leader will report that it is no longer the leader (i.e. there will not be a leader until the connection is re-established). If a LOST connection is RECONNECTED, the LeaderLatch will delete its previous ZNode and create a new one.</p>
 <p>Users of LeaderLatch must take account that connection issues can cause leadership to be lost. i.e. hasLeadership() returns true but some time later the connection is SUSPENDED or LOST. At that point hasLeadership() will return false. It is highly recommended that LeaderLatch users register a ConnectionStateListener.</p>
                   </div>
             </div>

Modified: curator/site/trunk/curator-recipes/license.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/license.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/license.html (original)
+++ curator/site/trunk/curator-recipes/license.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Project License</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/mail-lists.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/mail-lists.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/mail-lists.html (original)
+++ curator/site/trunk/curator-recipes/mail-lists.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/multi-shared-lock.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/multi-shared-lock.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/multi-shared-lock.html (original)
+++ curator/site/trunk/curator-recipes/multi-shared-lock.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/node-cache.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/node-cache.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/node-cache.html (original)
+++ curator/site/trunk/curator-recipes/node-cache.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/path-cache.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/path-cache.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/path-cache.html (original)
+++ curator/site/trunk/curator-recipes/path-cache.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     
@@ -351,7 +351,7 @@ cacheData - if true, node contents are c
 <div class="section">
 <h3>General Usage<a name="General_Usage"></a></h3></div>
 <p>The cache must be started by calling <tt>start()</tt>. Call <tt>close()</tt> when you are through with the cache.</p>
-<p>There are two versions of <tt>start()</tt>. The noarg version gives default behavior. The other version takes an enumeration that allows you to control how the initial cache is warmed:</p>
+<p>There are two versions of <tt>start()</tt>. The no-arg version gives default behavior. The other version takes an enumeration that allows you to control how the initial cache is warmed:</p>
 <div class="source">
 <pre>public enum StartMode
 {

Modified: curator/site/trunk/curator-recipes/persistent-ephemeral-node.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/persistent-ephemeral-node.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/persistent-ephemeral-node.html (original)
+++ curator/site/trunk/curator-recipes/persistent-ephemeral-node.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>
                       
                 
                     

Modified: curator/site/trunk/curator-recipes/plugin-management.html
URL: http://svn.apache.org/viewvc/curator/site/trunk/curator-recipes/plugin-management.html?rev=1598886&r1=1598885&r2=1598886&view=diff
==============================================================================
--- curator/site/trunk/curator-recipes/plugin-management.html (original)
+++ curator/site/trunk/curator-recipes/plugin-management.html Sat May 31 16:25:38 2014
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2014-05-28
+ | Generated by Apache Maven Doxia at 2014-05-31
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20140528" />
+    <meta name="Date-Revision-yyyymmdd" content="20140531" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Curator Recipes - Project Plugin Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -53,7 +53,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2014-05-28</li>
+                  <li id="publishDate">Last Published: 2014-05-31</li>