Skip to content

Commit 44890a8

Browse files
committed
Wrapping, newlines, and minor wording changes to scenarios/network.
1 parent 44b164c commit 44890a8

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

docs/scenarios/network.rst

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,23 @@ IMAP or SSH protocols, instant messaging and `much more <http://twistedmatrix.co
1212
PyZMQ
1313
-----
1414

15-
`PyZMQ <http://zeromq.github.com/pyzmq/>`_ is the Python binding for `ZeroMQ <http://www.zeromq.org/>`_,
16-
which is a high-performance asynchronous messaging library. One great advantage is that ZeroMQ
17-
can be used for message queuing without a message broker. The basic patterns for this are:
18-
19-
- request-reply: connects a set of clients to a set of services. This is a remote procedure call
20-
and task distribution pattern.
21-
- publish-subscribe: connects a set of publishers to a set of subscribers. This is a data
22-
distribution pattern.
23-
- push-pull (or pipeline): connects nodes in a fan-out / fan-in pattern that can have multiple
24-
steps, and loops. This is a parallel task distribution and collection pattern.
15+
`PyZMQ <http://zeromq.github.com/pyzmq/>`_ is the Python binding for
16+
`ZeroMQ <http://www.zeromq.org/>`_, which is a high-performance asynchronous
17+
messaging library. One great advantage of ZeroMQ is that it can be used for
18+
message queuing without a message broker. The basic patterns for this are:
19+
20+
- request-reply: connects a set of clients to a set of services. This is a
21+
remote procedure call and task distribution pattern.
22+
- publish-subscribe: connects a set of publishers to a set of subscribers.
23+
This is a data distribution pattern.
24+
- push-pull (or pipeline): connects nodes in a fan-out / fan-in pattern that
25+
can have multiple steps, and loops. This is a parallel task distribution
26+
and collection pattern.
2527

2628
For a quick start, read the `ZeroMQ guide <http://zguide.zeromq.org/page:all>`_.
2729

2830
gevent
2931
------
30-
`gevent <http://www.gevent.org/>`_ is a coroutine-based Python networking library
31-
that uses greenlets and libevent event loop.
3232

33+
`gevent <http://www.gevent.org/>`_ is a coroutine-based Python networking library
34+
that uses greenlets and libevent event loops.

0 commit comments

Comments
 (0)