@@ -169,26 +169,22 @@ template <relat Rp, relat Rc, trans Ts>
169
169
using chan = chan_wrapper<ipc::wr<Rp, Rc, Ts>>;
170
170
171
171
/* *
172
- * class route
172
+ * \ class route
173
173
*
174
- * You could use one producer/server/sender for sending messages to a route,
175
- * then all the consumers/clients/receivers which are receiving with this route,
176
- * would receive your sent messages.
177
- *
178
- * A route could only be used in 1 to N
179
- * (one producer/writer to multi consumers/readers)
174
+ * \note You could use one producer/server/sender for sending messages to a route,
175
+ * then all the consumers/clients/receivers which are receiving with this route,
176
+ * would receive your sent messages.
177
+ * A route could only be used in 1 to N (one producer/writer to multi consumers/readers).
180
178
*/
181
-
182
179
using route = chan<relat::single, relat::multi, trans::broadcast>;
183
180
184
181
/* *
185
- * class channel
182
+ * \ class channel
186
183
*
187
- * You could use multi producers/writers for sending messages to a channel,
188
- * then all the consumers/readers which are receiving with this channel,
189
- * would receive your sent messages.
184
+ * \note You could use multi producers/writers for sending messages to a channel,
185
+ * then all the consumers/readers which are receiving with this channel,
186
+ * would receive your sent messages.
190
187
*/
191
-
192
188
using channel = chan<relat::multi, relat::multi, trans::broadcast>;
193
189
194
190
} // namespace ipc
0 commit comments