You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by ji...@apache.org on 2020/12/04 07:33:56 UTC

[rocketmq] branch develop updated: [ISSUE #2402] Update directory for RocketMQ_Example.md

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

jinrongtong 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 bd67f7a  [ISSUE #2402] Update directory for RocketMQ_Example.md
bd67f7a is described below

commit bd67f7a8f78ccbcbf75f1d7b121c8710f5b77e8e
Author: Nian Hang Jiang <21...@users.noreply.github.com>
AuthorDate: Fri Dec 4 15:33:22 2020 +0800

    [ISSUE #2402] Update directory for RocketMQ_Example.md
---
 docs/cn/RocketMQ_Example.md | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/docs/cn/RocketMQ_Example.md b/docs/cn/RocketMQ_Example.md
index 4a22b3b..fd36fd1 100644
--- a/docs/cn/RocketMQ_Example.md
+++ b/docs/cn/RocketMQ_Example.md
@@ -1,5 +1,44 @@
 # 样例
 -----
+ * [目录](#样例)
+      * [1 基本样例](#1-基本样例)
+         * [1.1 加入依赖:](#11-加入依赖)
+         * [1.2 消息发送](#12-消息发送)
+            * [1、Producer端发送同步消息](#1producer端发送同步消息)
+            * [2、发送异步消息](#2发送异步消息)
+            * [3、单向发送消息](#3单向发送消息)
+         * [1.3 消费消息](#13-消费消息)
+      * [2 顺序消息样例](#2-顺序消息样例)
+         * [2.1 顺序消息生产](#21-顺序消息生产)
+         * [2.2 顺序消费消息](#22-顺序消费消息)
+      * [3 延时消息样例](#3-延时消息样例)
+         * [3.1 启动消费者等待传入订阅消息](#31-启动消费者等待传入订阅消息)
+         * [3.2 发送延时消息](#32-发送延时消息)
+         * [3.3 验证](#33-验证)
+         * [3.4 延时消息的使用场景](#34-延时消息的使用场景)
+         * [3.5 延时消息的使用限制](#35-延时消息的使用限制)
+      * [4 批量消息样例](#4-批量消息样例)
+         * [4.1 发送批量消息](#41-发送批量消息)
+         * [4.2 消息列表分割](#42-消息列表分割)
+      * [5 过滤消息样例](#5-过滤消息样例)
+         * [5.1 基本语法](#51-基本语法)
+         * [5.2 使用样例](#52-使用样例)
+            * [1、生产者样例](#1生产者样例)
+            * [2、消费者样例](#2消费者样例)
+      * [6 消息事务样例](#6-消息事务样例)
+         * [6.1 发送事务消息样例](#61-发送事务消息样例)
+            * [1、创建事务性生产者](#1创建事务性生产者)
+            * [2、实现事务的监听接口](#2实现事务的监听接口)
+         * [6.2 事务消息使用上的限制](#62-事务消息使用上的限制)
+      * [7 Logappender样例](#7-logappender样例)
+         * [7.1 log4j样例](#71-log4j样例)
+         * [7.2 log4j2样例](#72-log4j2样例)
+         * [7.3 logback样例](#73-logback样例)
+      * [8 OpenMessaging样例](#8-openmessaging样例)
+         * [8.1 OMSProducer样例](#81-omsproducer样例)
+         * [8.2 OMSPullConsumer](#82-omspullconsumer)
+         * [8.3 OMSPushConsumer](#83-omspushconsumer)
+-----
 ## 1 基本样例