This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/8.5.x by this push:
     new 5721c341ec Correct Javadoc
5721c341ec is described below

commit 5721c341ec7df565978e31291d8aeb4f40ccfd48
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Aug 11 16:08:21 2022 +0100

    Correct Javadoc
---
 java/org/apache/catalina/tribes/Channel.java | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/java/org/apache/catalina/tribes/Channel.java 
b/java/org/apache/catalina/tribes/Channel.java
index e3f51bc066..14db643a32 100644
--- a/java/org/apache/catalina/tribes/Channel.java
+++ b/java/org/apache/catalina/tribes/Channel.java
@@ -18,6 +18,8 @@ package org.apache.catalina.tribes;
 
 import java.io.Serializable;
 
+import 
org.apache.catalina.tribes.group.interceptors.MessageDispatchInterceptor;
+
 /**
  * Channel interface<br>
  * A channel is a representation of a group of nodes all participating in some 
sort of
@@ -161,9 +163,8 @@ public interface Channel {
      * to trigger certain behavior. Most flags are used to trigger channel 
interceptors
      * as the message passes through the channel stack. <br>
      * However, there are five default flags that every channel implementation 
must implement<br>
-     * SEND_OPTIONS_ASYNCHRONOUS - Message is sent and an ACK is received when 
the message has been received and
-     * processed by the recipient<br>
-     * If no ack is received, the message is not considered successful<br>
+     * SEND_OPTIONS_ASYNCHRONOUS - Message will be placed on a queue and sent 
by a separate thread<br>
+     * If the queue is full, behaviour depends on {@link 
MessageDispatchInterceptor#isAlwaysSend()}
      * @see #send(Member[], Serializable , int)
      * @see #send(Member[], Serializable, int, ErrorHandler)
      */


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

Reply via email to