You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kf...@apache.org on 2013/09/02 11:20:41 UTC

svn commit: r1519373 - in /tomcat/tc7.0.x/trunk/webapps/docs: changelog.xml config/cluster-channel.xml

Author: kfujino
Date: Mon Sep  2 09:20:41 2013
New Revision: 1519373

URL: http://svn.apache.org/r1519373
Log:
Add document for org.apache.catalina.tribes.group.GroupChannel.

Modified:
    tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
    tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-channel.xml

Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1519373&r1=1519372&r2=1519373&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Mon Sep  2 09:20:41 2013
@@ -305,6 +305,10 @@
         The WebSocket examples in the examples web application have been changed
         to use the new JSR-356 Java WebSocket 1.0 implementation. (markt)
       </update>
+      <add>
+        Add document for
+        <code>org.apache.catalina.tribes.group.GroupChannel</code>. (kfujino)
+      </add>
     </changelog>
   </subsection>
   <subsection name="Other">

Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-channel.xml
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-channel.xml?rev=1519373&r1=1519372&r2=1519373&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-channel.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-channel.xml Mon Sep  2 09:20:41 2013
@@ -96,6 +96,30 @@
 
   </subsection>
 
+  <subsection name="org.apache.catalina.tribes.group.GroupChannel Attributes">
+
+    <attributes>
+
+      <attribute name="heartbeat" required="false">
+         Flag whether the channel manages its own heartbeat.
+         If set to true,  the channel start a local thread for the heart beat.
+         If set this flag to false, you must set SimpleTcpCluster#heartbeatBackgroundEnabled
+         to true. default value is true.
+      </attribute>
+
+      <attribute name="heartbeatSleeptime" required="false">
+        If heartbeat == true, specifies the interval of heartbeat thread in milliseconds.
+      </attribute>
+
+      <attribute name="optionCheck" required="false">
+        If set to true, the GroupChannel will check the option flags that each
+        interceptor is using. Reports an error if two interceptor share the same
+        flag.
+      </attribute>
+
+    </attributes>
+
+  </subsection>
 
 </section>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org