From a46773bbd5ecdefa5311078fa68072c53f7ce84b Mon Sep 17 00:00:00 2001 From: mutouyun Date: Sat, 23 Sep 2023 21:38:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/libipc/ipc.h | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/include/libipc/ipc.h b/include/libipc/ipc.h index 882367c..99a6b10 100755 --- a/include/libipc/ipc.h +++ b/include/libipc/ipc.h @@ -169,26 +169,22 @@ template using chan = chan_wrapper>; /** - * class route + * \class route * - * You could use one producer/server/sender for sending messages to a route, - * then all the consumers/clients/receivers which are receiving with this route, - * would receive your sent messages. - * - * A route could only be used in 1 to N - * (one producer/writer to multi consumers/readers) + * \note You could use one producer/server/sender for sending messages to a route, + * then all the consumers/clients/receivers which are receiving with this route, + * would receive your sent messages. + * A route could only be used in 1 to N (one producer/writer to multi consumers/readers). */ - using route = chan; /** - * class channel + * \class channel * - * You could use multi producers/writers for sending messages to a channel, - * then all the consumers/readers which are receiving with this channel, - * would receive your sent messages. + * \note You could use multi producers/writers for sending messages to a channel, + * then all the consumers/readers which are receiving with this channel, + * would receive your sent messages. */ - using channel = chan; } // namespace ipc