You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by vo...@apache.org on 2020/03/31 06:12:39 UTC

[rocketmq] branch develop updated: Correct the Java doc for MessageListenerOrderly.java (#1897)

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

vongosling pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
     new c5e5f8d  Correct the Java doc for MessageListenerOrderly.java (#1897)
c5e5f8d is described below

commit c5e5f8dd6e2ff22e6d433880cce2d789640cfa29
Author: Crearns <qq...@163.com>
AuthorDate: Tue Mar 31 14:12:29 2020 +0800

    Correct the Java doc for MessageListenerOrderly.java (#1897)
    
    * Update the javadoc for MessageListenerOrderly
---
 .../rocketmq/client/consumer/listener/MessageListenerOrderly.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/client/src/main/java/org/apache/rocketmq/client/consumer/listener/MessageListenerOrderly.java b/client/src/main/java/org/apache/rocketmq/client/consumer/listener/MessageListenerOrderly.java
index d148df5..419169d 100644
--- a/client/src/main/java/org/apache/rocketmq/client/consumer/listener/MessageListenerOrderly.java
+++ b/client/src/main/java/org/apache/rocketmq/client/consumer/listener/MessageListenerOrderly.java
@@ -20,8 +20,7 @@ import java.util.List;
 import org.apache.rocketmq.common.message.MessageExt;
 
 /**
- * A MessageListenerConcurrently object is used to receive asynchronously delivered messages orderly.one queue,one
- * thread
+ * A MessageListenerOrderly object is used to receive messages orderly. One queue by one thread
  */
 public interface MessageListenerOrderly extends MessageListener {
     /**