small doco update with the addition on the new features
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 26 Feb 2008 18:10:50 +0000 (18:10 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 26 Feb 2008 18:10:50 +0000 (18:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@631316 13f79535-47bb-0310-9956-ffa450edef68

webapps/docs/tribes/introduction.xml

index 6d5dfdb..9ffb306 100644 (file)
   </p>
   <p>
     <b>Guaranteed Messaging</b><br/>
-    In the default implementation of Tribes uses TCP for messaging. TCP already has guaranteed message delivery
+    In the default implementation of Tribes uses TCP or UDP for messaging. TCP already has guaranteed message delivery
     and flow control built in. I believe that the performance of Java TCP, will outperform an implementation of
-    Java/UDP/flow-control/message guarantee since the logic happens further down the stack.<br/>
+    Java/UDP/flow-control/message guarantee since the logic happens further down the stack. UDP messaging has been added in for 
+    sending messages over UDP instead of TCP when desired. The same guarantee scenarios as described below are still available 
+    over UDP, however, when a UDP message is lost, it's considered failed.<br/>
     Tribes supports both non-blocking and blocking IO operations. The recommended setting is to use non blocking
     as it promotes better parallelism when sending and receiving messages. The blocking implementation is available
     for those platforms where NIO is still a trouble child.
 
 <section name="Where can I get Tribes">
   <p>
-    
+    Tribes ships as a module with Tomcat, and is released as part of the Apache Tomcat release.  
   </p>