summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIrmen de Jong <irmen@razorvine.net>2018-11-25 15:40:54 +0100
committerAsif Saif Uddin <auvipy@gmail.com>2018-11-25 20:40:54 +0600
commitaa8ea28f50c4605fda0a3b1cea4ca1b3a5e80598 (patch)
treeed51935248cbe4e572011d12efe64b0914277247 /docs
parent44524d590b6e8b3da94cb19a23a3e34fd442406a (diff)
downloadkombu-aa8ea28f50c4605fda0a3b1cea4ca1b3a5e80598.tar.gz
Making the pyro transport available, fix it for recent Pyro4 versions, add broker daemon (#895)
* Make the pyro transport available and fix it for recent Pyro4 version. Implemented the missing Pyro Kombu broker to actually be able to use the Pyro transport * code style
Diffstat (limited to 'docs')
-rw-r--r--docs/includes/introduction.txt4
-rw-r--r--docs/reference/kombu.transport.pyro.rst7
-rw-r--r--docs/userguide/connections.rst4
3 files changed, 14 insertions, 1 deletions
diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt
index a4fc4f0a..c2389ce4 100644
--- a/docs/includes/introduction.txt
+++ b/docs/includes/introduction.txt
@@ -71,7 +71,7 @@ and the `Wikipedia article about AMQP`_.
.. _`Wikipedia article about AMQP`: http://en.wikipedia.org/wiki/AMQP
.. _`carrot`: https://pypi.org/project/carrot/
.. _`librabbitmq`: https://pypi.org/project/librabbitmq/
-.. _`Pyro`: http://pythonhosted.org/Pyro4/
+.. _`Pyro`: https://pyro4.readthedocs.io/
.. _`SoftLayer MQ`: http://www.softlayer.com/services/additional/message-queue
.. _transport-comparison:
@@ -98,6 +98,8 @@ Transport Comparison
+---------------+----------+------------+------------+---------------+--------------+-----------------------+
| *SLMQ* | Virtual | Yes | Yes [#f1]_ | No | No | No |
+---------------+----------+------------+------------+---------------+--------------+-----------------------+
+| *Pyro* | Virtual | Yes | Yes [#f1]_ | No | No | No |
++---------------+----------+------------+------------+---------------+--------------+-----------------------+
.. [#f1] Declarations only kept in memory, so exchanges/queues
diff --git a/docs/reference/kombu.transport.pyro.rst b/docs/reference/kombu.transport.pyro.rst
index 7dc03212..d5dd78e4 100644
--- a/docs/reference/kombu.transport.pyro.rst
+++ b/docs/reference/kombu.transport.pyro.rst
@@ -22,3 +22,10 @@
.. autoclass:: Channel
:members:
:undoc-members:
+
+
+ KombuBroker
+ -----------
+
+ .. autoclass:: KombuBroker
+ :members:
diff --git a/docs/userguide/connections.rst b/docs/userguide/connections.rst
index e3ceaa07..d331dc7c 100644
--- a/docs/userguide/connections.rst
+++ b/docs/userguide/connections.rst
@@ -98,6 +98,10 @@ All of these are valid URLs:
# Using virtual host 'foo'
amqp://localhost/foo
+ # Using Pyro with name server running on 'localhost'
+ pyro://localhost/kombu.broker
+
+
The query part of the URL can also be used to set options, e.g.:
.. code-block:: text