@@ -164,7 +164,7 @@ Groups are matched using exact matching (vs prefix matching of PubSub).
164164NOTE: Radio-dish is still in draft phase.
165165
166166ZMQ_RADIO
167- ^^^^^^^
167+ ^^^^^^^^^
168168A socket of type 'ZMQ_RADIO' is used by a _publisher_ to distribute data.
169169Each message belong to a group, a group is specified with xref:zmq_msg_set_group.adoc[zmq_msg_set_group]
170170Messages are distributed to all members of a group.
@@ -339,15 +339,15 @@ Outgoing routing strategy:: N/A
339339Action in mute state:: Block
340340
341341Scatter-gather pattern
342- ~~~~~~~~~~~~~~~~
342+ ~~~~~~~~~~~~~~~~~~~~~~
343343The scatter-gather pattern is the thread-safe version of the pipeline pattern.
344344The scatter-gather pattern is used for distributing data to _nodes_ arranged in
345345a pipeline. Data always flows down the pipeline, and each stage of the pipeline
346346is connected to at least one _node_. When a pipeline stage is connected to
347347multiple _nodes_ data is round-robined among all connected _nodes_.
348348
349349ZMQ_SCATTER
350- ^^^^^^^^
350+ ^^^^^^^^^^^
351351A socket of type 'ZMQ_SCATTER' is used by a scatter-gather _node_ to send messages
352352to downstream scatter-gather _nodes_. Messages are round-robined to all connected
353353downstream _nodes_. The _zmq_recv()_ function is not implemented for this
@@ -374,7 +374,7 @@ Action in mute state:: Block
374374
375375
376376ZMQ_GATHER
377- ^^^^^^^^
377+ ^^^^^^^^^^
378378A socket of type 'ZMQ_GATHER' is used by a scatter-gather _node_ to receive messages
379379from upstream scatter-gather _nodes_. Messages are fair-queued from among all
380380connected upstream _nodes_. The _zmq_send()_ function is not implemented for
@@ -433,7 +433,7 @@ Action in mute state:: Block
433433
434434
435435Peer-to-peer pattern
436- ~~~~~~~~~~~~~~~~~~~~~~
436+ ~~~~~~~~~~~~~~~~~~~~
437437
438438The peer-to-peer pattern is used to connect a peer to multiple peers.
439439Peer can both connect and bind and mix both of them with the same socket.
@@ -474,7 +474,7 @@ Incoming routing strategy:: Fair-queued
474474Action in mute state:: Return EAGAIN
475475
476476Channel pattern
477- ~~~~~~~~~~~~~~~~~~~~~~
477+ ~~~~~~~~~~~~~~~
478478The channel pattern is the thread-safe version of the exclusive pair pattern.
479479The channel pattern is used to connect a peer to precisely one other
480480peer. This pattern is used for inter-thread communication across the inproc
@@ -483,7 +483,7 @@ transport.
483483NOTE: Channel is still in draft phase.
484484
485485ZMQ_CHANNEL
486- ^^^^^^^^
486+ ^^^^^^^^^^^
487487A socket of type 'ZMQ_CHANNEL' can only be connected to a single peer at any one
488488time. No message routing or filtering is performed on messages sent over a
489489'ZMQ_CHANNEL' socket.
0 commit comments