update docs
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 15 May 2008 17:01:07 +0000 (17:01 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 15 May 2008 17:01:07 +0000 (17:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@656737 13f79535-47bb-0310-9956-ffa450edef68

webapps/docs/config/cluster-interceptor.xml

index 1c0bc02..59e299a 100644 (file)
      <attribute name="optionFlag" required="false">
        The default and hard coded value is <code>8 (org.apache.catalina.tribes.Channel.SEND_OPTIONS_ASYNCHRONOUS)</code>.
        The dispatcher will trigger on this value only, as it is predefined by Tribes.
+       The other attributes are inherited from its base class <code>org.apache.catalina.tribes.group.interceptors.MessageDispatchInterceptor</code>.
      </attribute>
    </attributes>
   </subsection>
        The default and hard coded value is <code>8 (org.apache.catalina.tribes.Channel.SEND_OPTIONS_ASYNCHRONOUS)</code>.
        The dispatcher will trigger on this value only, as it is predefined by Tribes.
      </attribute>
+     <attribute name="alwaysSend" required="false">
+       What behavior should be executed when the dispatch queue is full. If <code>true</code> (default), then the message is
+       is sent synchronously, if <code>false</code> an error is thrown.   
+     </attribute>
+     <attribute name="maxQueueSize" required="false">
+       Size in bytes of the dispatch queue, the default value is <code> 1024*1024*64 (64MB)</code> sets the maximum queue size for the dispatch queue
+       if the queue fills up, one can trigger the behavior, if <code>alwaysSend</code> is set to true, the mesage will be sent synchronously
+       if the flag is false, an error is thrown  
+     </attribute>
    </attributes>
   </subsection>
   <subsection name="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector Attributes">