summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_sources/changelog.txt35
-rw-r--r--_sources/introduction.txt61
-rw-r--r--_sources/reference/index.txt2
-rw-r--r--changelog.html108
-rw-r--r--faq.html10
-rw-r--r--genindex.html222
-rw-r--r--index.html19
-rw-r--r--introduction.html69
-rw-r--r--objects.invbin5855 -> 5927 bytes
-rw-r--r--py-modindex.html36
-rw-r--r--reference/index.html37
-rw-r--r--reference/kombu.abstract.html10
-rw-r--r--reference/kombu.compat.html20
-rw-r--r--reference/kombu.compression.html10
-rw-r--r--reference/kombu.connection.html10
-rw-r--r--reference/kombu.entity.html20
-rw-r--r--reference/kombu.exceptions.html10
-rw-r--r--reference/kombu.messaging.html10
-rw-r--r--reference/kombu.pidbox.html10
-rw-r--r--reference/kombu.pools.html12
-rw-r--r--reference/kombu.serialization.html10
-rw-r--r--reference/kombu.simple.html10
-rw-r--r--reference/kombu.syn.html10
-rw-r--r--reference/kombu.transport.SQS.html18
-rw-r--r--reference/kombu.transport.base.html10
-rw-r--r--reference/kombu.transport.beanstalk.html10
-rw-r--r--reference/kombu.transport.html18
-rw-r--r--reference/kombu.transport.librabbitmq.html461
-rw-r--r--reference/kombu.transport.memory.html18
-rw-r--r--reference/kombu.transport.mongodb.html18
-rw-r--r--reference/kombu.transport.pyamqplib.html303
-rw-r--r--reference/kombu.transport.pycouchdb.html86
-rw-r--r--reference/kombu.transport.pypika.html240
-rw-r--r--reference/kombu.transport.pyredis.html10
-rw-r--r--reference/kombu.transport.virtual.exchange.html10
-rw-r--r--reference/kombu.transport.virtual.html10
-rw-r--r--reference/kombu.transport.virtual.scheduling.html10
-rw-r--r--reference/kombu.utils.compat.html12
-rw-r--r--reference/kombu.utils.debug.html10
-rw-r--r--reference/kombu.utils.encoding.html10
-rw-r--r--reference/kombu.utils.finalize.html10
-rw-r--r--reference/kombu.utils.functional.html10
-rw-r--r--reference/kombu.utils.html18
-rw-r--r--reference/kombu.utils.log.html10
-rw-r--r--search.html10
-rw-r--r--searchindex.js2
-rw-r--r--userguide/connections.html10
-rw-r--r--userguide/index.html12
-rw-r--r--userguide/serialization.html10
-rw-r--r--userguide/simple.html10
50 files changed, 1111 insertions, 986 deletions
diff --git a/_sources/changelog.txt b/_sources/changelog.txt
index ecb855e7..35929403 100644
--- a/_sources/changelog.txt
+++ b/_sources/changelog.txt
@@ -2,35 +2,40 @@
Change history
================
-.. _version-1.3.1:
+.. _version-1.3.2:
-1.3.1
+1.3.2
=====
-:release-date: 2011-10-07 03:00 P.M BST
+:release-date: 2011-09-10 01:00 P.M BST
+:by: Mher Movsisyan
-* Last release broke after fork for pool reinitialization.
+* Broke Python 2.5 compatibility by importing ``parse_qsl`` from ``urlparse``
-* Producer/Consumer now has a ``connection`` attribute,
- giving access to the :class:`BrokerConnection` of the
- instance.
+* Connection.default_channel is now closed when connection is revived
+ after connection failures.
-* Pika: Channels now have access to the underlying
- :class:`BrokerConnection` instance using ``channel.connection.client``.
+* Pika: Channel now supports the ``connection.client`` attribute
+ as required by the simple interface.
- This was previously required by the ``Simple`` classes and is now
- also required by :class:`Consumer` and :class:`Producer`.
+* pools.set_limit now raises an exception if the limit is lower
+ than the previous limit.
-* Connection.default_channel is now closed at object revival.
+* pools.set_limit no longer resets the pools.
-* Adds kombu.clocks.LamportClock.
+.. _version-1.3.1:
+
+1.3.1
+=====
-* compat.entry_to_queue has been moved to new module :mod:`kombu.common`.
+* Forgot to set release-date for version 1.3.0.
+:by: Ask Solem
.. _version-1.3.0:
1.3.0
=====
-:release-date: 2011-10-05 01:00 P.M BST
+:release-date: 2011-09-05 01:00 P.M BST
+:by: Ask Solem
* Broker connection info can be now be specified using URLs
diff --git a/_sources/introduction.txt b/_sources/introduction.txt
index e5865252..d00d4e95 100644
--- a/_sources/introduction.txt
+++ b/_sources/introduction.txt
@@ -115,61 +115,38 @@ Quick overview
::
- from kombu import BrokerConnection, Exchange, Queue
+ from kombu.connection import BrokerConnection
+ from kombu.messaging import Exchange, Queue, Consumer, Producer
media_exchange = Exchange("media", "direct", durable=True)
video_queue = Queue("video", exchange=media_exchange, routing_key="video")
- # connections
- with BrokerConnection("amqp://guest:guest@localhost//") as conn:
+ # connections/channels
+ connection = BrokerConnection("localhost", "guest", "guest", "/")
+ channel = connection.channel()
- # produce
- with conn.Producer(exchange=media_exchange,
- serializer="json") as producer:
- producer.publish({"name": "/tmp/lolcat1.avi", "size": 1301013})
+ # produce
+ producer = Producer(channel, exchange=media_exchange, serializer="json")
+ producer.publish({"name": "/tmp/lolcat1.avi", "size": 1301013})
- # consume
- with conn.Consumer(video_queue, callbacks=[process_media]) as consumer:
- # Process messages and handle events on all channels
- while True:
- connection.drain_events()
+ # consume
+ consumer = Consumer(channel, video_queue)
+ consumer.register_callback(process_media)
+ consumer.consume()
+
+ # Process messages on all channels
+ while True:
+ connection.drain_events()
# Consume from several queues on the same channel:
video_queue = Queue("video", exchange=media_exchange, key="video")
image_queue = Queue("image", exchange=media_exchange, key="image")
- with connection.Consumer([video_queue, image_queue],
- callbacks=[process_media]) as consumer:
- while True:
- connection.drain_events()
-
-
-Or handle channels menually::
-
- with connection.channel() as channel:
- producer = Producer(channel, ...)
- consumer = Producer(channel)
-
-
-All objects can be used outside of with statements too,
-just remember to close the objects after use::
-
- from kombu import BrokerConnection, Consumer, Producer
-
- connection = BrokerConnection()
- # ...
- connection.close()
-
- consumer = Consumer(channel_or_connection, ...)
- consumer.register_callback(my_callback)
+ consumer = Consumer(channel, [video_queue, image_queue])
consumer.consume()
- # ....
- consumer.cancel()
-
- producer = Producer(channel_or_connection, ...)
- # ....
- producer.close()
+ while True:
+ connection.drain_events()
`Exchange` and `Queue` are simply declarations that can be pickled
diff --git a/_sources/reference/index.txt b/_sources/reference/index.txt
index 59925ada..92e9cd60 100644
--- a/_sources/reference/index.txt
+++ b/_sources/reference/index.txt
@@ -12,8 +12,6 @@
kombu.simple
kombu.messaging
kombu.entity
- kombu.common
- kombu.clocks
kombu.compat
kombu.pidbox
kombu.exceptions
diff --git a/changelog.html b/changelog.html
index e1da3e47..a11f2917 100644
--- a/changelog.html
+++ b/changelog.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Change history &mdash; Kombu v1.3.1 documentation</title>
+ <title>Change history &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="index.html" />
<link rel="prev" title="Logging - kombu.utils.log" href="reference/kombu.utils.log.html" />
</head>
<body>
@@ -37,7 +37,7 @@
<li class="right" >
<a href="reference/kombu.utils.log.html" title="Logging - kombu.utils.log"
accesskey="P">previous</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -48,45 +48,52 @@
<div class="section" id="change-history">
<h1>Change history<a class="headerlink" href="#change-history" title="Permalink to this headline">¶</a></h1>
-<div class="section" id="version-1-3-1">
-<span id="id1"></span><h2>1.3.1<a class="headerlink" href="#version-1-3-1" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="version-1-3-2">
+<span id="id1"></span><h2>1.3.2<a class="headerlink" href="#version-1-3-2" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
-<tr class="field"><th class="field-name">release-date:</th><td class="field-body">2011-10-07 03:00 P.M BST</td>
+<tr class="field"><th class="field-name">release-date:</th><td class="field-body">2011-09-10 01:00 P.M BST</td>
+</tr>
+<tr class="field"><th class="field-name">by:</th><td class="field-body">Mher Movsisyan</td>
</tr>
</tbody>
</table>
-<ul>
-<li><p class="first">Last release broke after fork for pool reinitialization.</p>
-</li>
-<li><p class="first">Producer/Consumer now has a <tt class="docutils literal"><span class="pre">connection</span></tt> attribute,
-giving access to the <tt class="xref py py-class docutils literal"><span class="pre">BrokerConnection</span></tt> of the
-instance.</p>
-</li>
-<li><p class="first">Pika: Channels now have access to the underlying
-<tt class="xref py py-class docutils literal"><span class="pre">BrokerConnection</span></tt> instance using <tt class="docutils literal"><span class="pre">channel.connection.client</span></tt>.</p>
-<blockquote>
-<div><p>This was previously required by the <tt class="docutils literal"><span class="pre">Simple</span></tt> classes and is now
-also required by <tt class="xref py py-class docutils literal"><span class="pre">Consumer</span></tt> and <tt class="xref py py-class docutils literal"><span class="pre">Producer</span></tt>.</p>
-</div></blockquote>
-</li>
-<li><p class="first">Connection.default_channel is now closed at object revival.</p>
-</li>
-<li><p class="first">Adds kombu.clocks.LamportClock.</p>
-</li>
-<li><p class="first">compat.entry_to_queue has been moved to new module <a class="reference internal" href="reference/kombu.common.html#module-kombu.common" title="kombu.common"><tt class="xref py py-mod docutils literal"><span class="pre">kombu.common</span></tt></a>.</p>
-</li>
+<ul class="simple">
+<li>Broke Python 2.5 compatibility by importing <tt class="docutils literal"><span class="pre">parse_qsl</span></tt> from <tt class="docutils literal"><span class="pre">urlparse</span></tt></li>
+<li>Connection.default_channel is now closed when connection is revived
+after connection failures.</li>
+<li>Pika: Channel now supports the <tt class="docutils literal"><span class="pre">connection.client</span></tt> attribute
+as required by the simple interface.</li>
+<li>pools.set_limit now raises an exception if the limit is lower
+than the previous limit.</li>
+<li>pools.set_limit no longer resets the pools.</li>
</ul>
</div>
+<div class="section" id="version-1-3-1">
+<span id="id2"></span><h2>1.3.1<a class="headerlink" href="#version-1-3-1" title="Permalink to this headline">¶</a></h2>
+<ul class="simple">
+<li>Forgot to set release-date for version 1.3.0.</li>
+</ul>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">by:</th><td class="field-body">Ask Solem</td>
+</tr>
+</tbody>
+</table>
+</div>
<div class="section" id="version-1-3-0">
-<span id="id2"></span><h2>1.3.0<a class="headerlink" href="#version-1-3-0" title="Permalink to this headline">¶</a></h2>
+<span id="id3"></span><h2>1.3.0<a class="headerlink" href="#version-1-3-0" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
-<tr class="field"><th class="field-name">release-date:</th><td class="field-body">2011-10-05 01:00 P.M BST</td>
+<tr class="field"><th class="field-name">release-date:</th><td class="field-body">2011-09-05 01:00 P.M BST</td>
+</tr>
+<tr class="field"><th class="field-name">by:</th><td class="field-body">Ask Solem</td>
</tr>
</tbody>
</table>
@@ -198,7 +205,7 @@ attribute.</p>
</ul>
</div>
<div class="section" id="version-1-2-1">
-<span id="id3"></span><h2>1.2.1<a class="headerlink" href="#version-1-2-1" title="Permalink to this headline">¶</a></h2>
+<span id="id4"></span><h2>1.2.1<a class="headerlink" href="#version-1-2-1" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -248,7 +255,7 @@ the queue if <tt class="docutils literal"><span class="pre">auto_declare</span><
</ul>
</div>
<div class="section" id="version-1-2-0">
-<span id="id4"></span><h2>1.2.0<a class="headerlink" href="#version-1-2-0" title="Permalink to this headline">¶</a></h2>
+<span id="id5"></span><h2>1.2.0<a class="headerlink" href="#version-1-2-0" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -269,7 +276,7 @@ arguments (Issue #48).</li>
</ul>
</div>
<div class="section" id="version-1-1-6">
-<span id="id5"></span><h2>1.1.6<a class="headerlink" href="#version-1-1-6" title="Permalink to this headline">¶</a></h2>
+<span id="id6"></span><h2>1.1.6<a class="headerlink" href="#version-1-1-6" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -303,7 +310,7 @@ error.</p>
</ul>
</div>
<div class="section" id="version-1-1-5">
-<span id="id6"></span><h2>1.1.5<a class="headerlink" href="#version-1-1-5" title="Permalink to this headline">¶</a></h2>
+<span id="id7"></span><h2>1.1.5<a class="headerlink" href="#version-1-1-5" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -317,7 +324,7 @@ error.</p>
</ul>
</div>
<div class="section" id="version-1-1-4">
-<span id="id7"></span><h2>1.1.4<a class="headerlink" href="#version-1-1-4" title="Permalink to this headline">¶</a></h2>
+<span id="id8"></span><h2>1.1.4<a class="headerlink" href="#version-1-1-4" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -353,7 +360,7 @@ keyword argument.</p>
</ul>
</div>
<div class="section" id="version-1-1-3">
-<span id="id8"></span><h2>1.1.3<a class="headerlink" href="#version-1-1-3" title="Permalink to this headline">¶</a></h2>
+<span id="id9"></span><h2>1.1.3<a class="headerlink" href="#version-1-1-3" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -387,7 +394,7 @@ connection related errors (<tt class="xref py py-attr docutils literal"><span cl
</ul>
</div>
<div class="section" id="version-1-1-2">
-<span id="id9"></span><h2>1.1.2<a class="headerlink" href="#version-1-1-2" title="Permalink to this headline">¶</a></h2>
+<span id="id10"></span><h2>1.1.2<a class="headerlink" href="#version-1-1-2" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -409,7 +416,7 @@ issues.</p>
</ul>
</div>
<div class="section" id="version-1-1-1">
-<span id="id10"></span><h2>1.1.1<a class="headerlink" href="#version-1-1-1" title="Permalink to this headline">¶</a></h2>
+<span id="id11"></span><h2>1.1.1<a class="headerlink" href="#version-1-1-1" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -424,7 +431,7 @@ in Python 2.6+ (Issue #33). We now ship with our own LifoQueue.</li>
</ul>
</div>
<div class="section" id="version-1-1-0">
-<span id="id11"></span><h2>1.1.0<a class="headerlink" href="#version-1-1-0" title="Permalink to this headline">¶</a></h2>
+<span id="id12"></span><h2>1.1.0<a class="headerlink" href="#version-1-1-0" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -512,7 +519,7 @@ log messages for connection related actions.</p>
</div>
</div>
<div class="section" id="version-1-0-7">
-<span id="id12"></span><h2>1.0.7<a class="headerlink" href="#version-1-0-7" title="Permalink to this headline">¶</a></h2>
+<span id="id13"></span><h2>1.0.7<a class="headerlink" href="#version-1-0-7" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -562,8 +569,8 @@ set (Issue #8).</p>
</li>
</ul>
</div>
-<div class="section" id="id13">
-<h2>1.0.6<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="id14">
+<h2>1.0.6<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -609,7 +616,7 @@ Channel open
</ul>
</div>
<div class="section" id="version-1-0-5">
-<span id="id14"></span><h2>1.0.5<a class="headerlink" href="#version-1-0-5" title="Permalink to this headline">¶</a></h2>
+<span id="id15"></span><h2>1.0.5<a class="headerlink" href="#version-1-0-5" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -639,7 +646,7 @@ consumer tag.</p>
</ul>
</div>
<div class="section" id="version-1-0-4">
-<span id="id15"></span><h2>1.0.4<a class="headerlink" href="#version-1-0-4" title="Permalink to this headline">¶</a></h2>
+<span id="id16"></span><h2>1.0.4<a class="headerlink" href="#version-1-0-4" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -659,7 +666,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-1-0-3">
-<span id="id16"></span><h2>1.0.3<a class="headerlink" href="#version-1-0-3" title="Permalink to this headline">¶</a></h2>
+<span id="id17"></span><h2>1.0.3<a class="headerlink" href="#version-1-0-3" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -675,7 +682,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-1-0-2">
-<span id="id17"></span><h2>1.0.2<a class="headerlink" href="#version-1-0-2" title="Permalink to this headline">¶</a></h2>
+<span id="id18"></span><h2>1.0.2<a class="headerlink" href="#version-1-0-2" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -690,7 +697,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-1-0-1">
-<span id="id18"></span><h2>1.0.1<a class="headerlink" href="#version-1-0-1" title="Permalink to this headline">¶</a></h2>
+<span id="id19"></span><h2>1.0.1<a class="headerlink" href="#version-1-0-1" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -704,7 +711,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-1-0-0">
-<span id="id19"></span><h2>1.0.0<a class="headerlink" href="#version-1-0-0" title="Permalink to this headline">¶</a></h2>
+<span id="id20"></span><h2>1.0.0<a class="headerlink" href="#version-1-0-0" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -718,7 +725,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-0-1-0">
-<span id="id20"></span><h2>0.1.0<a class="headerlink" href="#version-0-1-0" title="Permalink to this headline">¶</a></h2>
+<span id="id21"></span><h2>0.1.0<a class="headerlink" href="#version-0-1-0" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -744,6 +751,7 @@ there are no messages in the queue.</p>
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Change history</a><ul>
+<li><a class="reference internal" href="#version-1-3-2">1.3.2</a></li>
<li><a class="reference internal" href="#version-1-3-1">1.3.1</a></li>
<li><a class="reference internal" href="#version-1-3-0">1.3.0</a></li>
<li><a class="reference internal" href="#version-1-2-1">1.2.1</a></li>
@@ -759,7 +767,7 @@ there are no messages in the queue.</p>
</ul>
</li>
<li><a class="reference internal" href="#version-1-0-7">1.0.7</a></li>
-<li><a class="reference internal" href="#id13">1.0.6</a></li>
+<li><a class="reference internal" href="#id14">1.0.6</a></li>
<li><a class="reference internal" href="#version-1-0-5">1.0.5</a></li>
<li><a class="reference internal" href="#version-1-0-4">1.0.4</a></li>
<li><a class="reference internal" href="#version-1-0-3">1.0.3</a></li>
@@ -808,7 +816,7 @@ there are no messages in the queue.</p>
<li class="right" >
<a href="reference/kombu.utils.log.html" title="Logging - kombu.utils.log"
>previous</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/faq.html b/faq.html
index 3e1e8c58..1a549769 100644
--- a/faq.html
+++ b/faq.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Frequently Asked Questions &mdash; Kombu v1.3.1 documentation</title>
+ <title>Frequently Asked Questions &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="index.html" />
<link rel="next" title="API Reference" href="reference/index.html" />
<link rel="prev" title="Serialization" href="userguide/serialization.html" />
</head>
@@ -41,7 +41,7 @@
<li class="right" >
<a href="userguide/serialization.html" title="Serialization"
accesskey="P">previous</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -131,7 +131,7 @@ why it&#8217;s not implemented yet is revealed:</p>
<li class="right" >
<a href="userguide/serialization.html" title="Serialization"
>previous</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/genindex.html b/genindex.html
index 68e08297..74b93441 100644
--- a/genindex.html
+++ b/genindex.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Index &mdash; Kombu v1.3.1 documentation</title>
+ <title>Index &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="index.html" />
</head>
<body>
<div class="related">
@@ -33,7 +33,7 @@
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -65,13 +65,11 @@
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.AbstractChannel">AbstractChannel (class in kombu.transport.virtual)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.ack">ack() (kombu.transport.base.Message method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.ack">(kombu.transport.librabbitmq.Connection.Channel.Message method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.ack">(kombu.transport.virtual.Message method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.ack">(kombu.transport.virtual.QoS method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.acknowledged">acknowledged (kombu.transport.base.Message attribute)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.acknowledged">(kombu.transport.librabbitmq.Connection.Channel.Message attribute)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.acknowledged">(kombu.transport.virtual.Message attribute)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.connection.html#kombu.connection.ChannelPool.acquire">acquire() (kombu.connection.ChannelPool method)</a></dt>
@@ -88,20 +86,17 @@
<dd><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.ConsumerSet.add_queue">(kombu.compat.ConsumerSet method)</a></dt>
</dl></dd>
-</dl></td>
- <td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.clocks.html#kombu.clocks.LamportClock.adjust">adjust() (kombu.clocks.LamportClock method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.after_reply_message_received">after_reply_message_received() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.memory.html#kombu.transport.memory.Channel.after_reply_message_received">after_reply_message_received() (kombu.transport.memory.Channel method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.memory.html#kombu.transport.memory.Channel.after_reply_message_received">(kombu.transport.memory.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.memory.html#kombu.transport.memory.Transport.Channel.after_reply_message_received">(kombu.transport.memory.Transport.Channel method)</a></dt>
</dl></dd>
+</dl></td>
+ <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.append">append() (kombu.transport.virtual.QoS method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError.args">args (kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError attribute)</a></dt>
- <dd><dl>
- <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.MessageStateError.args">(kombu.transport.virtual.Message.MessageStateError attribute)</a></dt>
- </dl></dd>
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.MessageStateError.args">args (kombu.transport.virtual.Message.MessageStateError attribute)</a></dt>
<dt><a href="reference/kombu.entity.html#kombu.entity.Exchange.arguments">arguments (kombu.entity.Exchange attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.AsyncoreConnection">AsyncoreConnection (class in kombu.transport.pypika)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.AsyncoreTransport">AsyncoreTransport (class in kombu.transport.pypika)</a></dt>
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Consumer.auto_declare">auto_declare (kombu.messaging.Consumer attribute)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.auto_declare">(kombu.messaging.Producer attribute)</a></dt>
@@ -118,13 +113,13 @@
<h2 id="B">B</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.basic_ack">basic_ack() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.basic_ack">basic_ack() (kombu.transport.pypika.Channel method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.basic_ack">(kombu.transport.SQS.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.basic_ack">(kombu.transport.SQS.Transport.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_ack">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.basic_cancel">basic_cancel() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.basic_cancel">basic_cancel() (kombu.transport.pyamqplib.Channel method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.basic_cancel">(kombu.transport.SQS.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.basic_cancel">(kombu.transport.SQS.Transport.Channel method)</a></dt>
@@ -132,43 +127,37 @@
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Transport.Channel.basic_cancel">(kombu.transport.pyredis.Transport.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_cancel">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.basic_consume">basic_consume() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.basic_consume">basic_consume() (kombu.transport.pyamqplib.Channel method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.basic_consume">(kombu.transport.SQS.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.basic_consume">(kombu.transport.SQS.Transport.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.basic_consume">(kombu.transport.pypika.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Channel.basic_consume">(kombu.transport.pyredis.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Transport.Channel.basic_consume">(kombu.transport.pyredis.Transport.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_consume">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.basic_get">basic_get() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.basic_get">basic_get() (kombu.transport.pypika.Channel method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_get">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.basic_publish">basic_publish() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.basic_publish">basic_publish() (kombu.transport.pypika.Channel method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_publish">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.basic_qos">basic_qos() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
- <dd><dl>
- <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_qos">(kombu.transport.virtual.Channel method)</a></dt>
- </dl></dd>
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_qos">basic_qos() (kombu.transport.virtual.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_recover">basic_recover() (kombu.transport.virtual.Channel method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.basic_reject">basic_reject() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
- <dd><dl>
- <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_reject">(kombu.transport.virtual.Channel method)</a></dt>
- </dl></dd>
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.basic_reject">basic_reject() (kombu.transport.virtual.Channel method)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.abstract.html#kombu.abstract.MaybeChannelBound.bind">bind() (kombu.abstract.MaybeChannelBound method)</a></dt>
<dt><a href="reference/kombu.entity.html#kombu.entity.Queue.binding_arguments">binding_arguments (kombu.entity.Queue attribute)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.BrokerState.bindings">bindings (kombu.transport.virtual.BrokerState attribute)</a></dt>
<dt><a href="reference/kombu.syn.html#kombu.syn.blocking">blocking() (in module kombu.syn)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.BlockingConnection">BlockingConnection (class in kombu.transport.pypika)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.body">body (kombu.transport.base.Message attribute)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Channel.Message.body">(kombu.transport.librabbitmq.Channel.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.body">(kombu.transport.librabbitmq.Connection.Channel.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Message.body">(kombu.transport.librabbitmq.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection.Channel.Message.body">(kombu.transport.librabbitmq.Transport.Connection.Channel.Message attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.Message.body">(kombu.transport.pyamqplib.Channel.Message attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Message.body">(kombu.transport.pyamqplib.Message attribute)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection">BrokerConnection (class in kombu.connection)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.BrokerState">BrokerState (class in kombu.transport.virtual)</a></dt>
@@ -198,9 +187,11 @@
<dt><a href="reference/kombu.transport.beanstalk.html#kombu.transport.beanstalk.Channel">Channel (class in kombu.transport.beanstalk)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel">(class in kombu.transport.SQS)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Channel">(class in kombu.transport.librabbitmq)</a></dt>
<dt><a href="reference/kombu.transport.memory.html#kombu.transport.memory.Channel">(class in kombu.transport.memory)</a></dt>
<dt><a href="reference/kombu.transport.mongodb.html#kombu.transport.mongodb.Channel">(class in kombu.transport.mongodb)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel">(class in kombu.transport.pyamqplib)</a></dt>
+ <dt><a href="reference/kombu.transport.pycouchdb.html#kombu.transport.pycouchdb.Channel">(class in kombu.transport.pycouchdb)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel">(class in kombu.transport.pypika)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Channel">(class in kombu.transport.pyredis)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel">(class in kombu.transport.virtual)</a></dt>
</dl></dd>
@@ -214,22 +205,27 @@
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleBuffer.channel">(kombu.simple.SimpleBuffer attribute)</a></dt>
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleQueue.channel">(kombu.simple.SimpleQueue attribute)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.channel">(kombu.transport.base.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Channel.Message.channel">(kombu.transport.librabbitmq.Channel.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.channel">(kombu.transport.librabbitmq.Connection.Channel.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Message.channel">(kombu.transport.librabbitmq.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection.Channel.Message.channel">(kombu.transport.librabbitmq.Transport.Connection.Channel.Message attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.Message.channel">(kombu.transport.pyamqplib.Channel.Message attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Message.channel">(kombu.transport.pyamqplib.Message attribute)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Transport.Channel">Channel (kombu.transport.virtual.Transport attribute)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.channel">channel() (kombu.connection.BrokerConnection method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.channel">(kombu.transport.librabbitmq.Connection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Connection.channel">(kombu.transport.pyamqplib.Connection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.Connection.channel">(kombu.transport.pyamqplib.Transport.Connection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.AsyncoreConnection.channel">(kombu.transport.pypika.AsyncoreConnection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.BlockingConnection.channel">(kombu.transport.pypika.BlockingConnection method)</a></dt>
+ </dl></dd>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.Message">Channel.Message (class in kombu.transport.pyamqplib)</a></dt>
+ <dd><dl>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.Message">(class in kombu.transport.pypika)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Channel.Message">Channel.Message (class in kombu.transport.librabbitmq)</a></dt>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.Table">Channel.Table (class in kombu.transport.SQS)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.channel_errors">channel_errors (kombu.connection.BrokerConnection attribute)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Transport.channel_errors">(kombu.transport.base.Transport attribute)</a></dt>
</dl></dd>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.channel_id">channel_id (kombu.transport.pypika.Channel attribute)</a></dt>
<dt><a href="reference/kombu.exceptions.html#kombu.exceptions.ChannelLimitExceeded">ChannelLimitExceeded</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.ChannelPool">ChannelPool (class in kombu.connection)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.ChannelPool">ChannelPool() (kombu.connection.BrokerConnection method)</a></dt>
@@ -244,11 +240,12 @@
<dt><a href="reference/kombu.transport.beanstalk.html#kombu.transport.beanstalk.Transport.Channel.client">(kombu.transport.beanstalk.Transport.Channel attribute)</a></dt>
<dt><a href="reference/kombu.transport.mongodb.html#kombu.transport.mongodb.Channel.client">(kombu.transport.mongodb.Channel attribute)</a></dt>
<dt><a href="reference/kombu.transport.mongodb.html#kombu.transport.mongodb.Transport.Channel.client">(kombu.transport.mongodb.Transport.Channel attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pycouchdb.html#kombu.transport.pycouchdb.Channel.client">(kombu.transport.pycouchdb.Channel attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pycouchdb.html#kombu.transport.pycouchdb.Transport.Channel.client">(kombu.transport.pycouchdb.Transport.Channel attribute)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Channel.client">(kombu.transport.pyredis.Channel attribute)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Transport.Channel.client">(kombu.transport.pyredis.Transport.Channel attribute)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.clone">clone() (kombu.connection.BrokerConnection method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.close">close (kombu.transport.librabbitmq.Connection attribute)</a></dt>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.close">close() (kombu.compat.Consumer method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.ConsumerSet.close">(kombu.compat.ConsumerSet method)</a></dt>
@@ -260,9 +257,13 @@
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.close">(kombu.transport.SQS.Transport.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.beanstalk.html#kombu.transport.beanstalk.Channel.close">(kombu.transport.beanstalk.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.beanstalk.html#kombu.transport.beanstalk.Transport.Channel.close">(kombu.transport.beanstalk.Transport.Channel method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.close">(kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.mongodb.html#kombu.transport.mongodb.Channel.close">(kombu.transport.mongodb.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.mongodb.html#kombu.transport.mongodb.Transport.Channel.close">(kombu.transport.mongodb.Transport.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.close">(kombu.transport.pyamqplib.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Connection.close">(kombu.transport.pyamqplib.Connection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.AsyncoreConnection.close">(kombu.transport.pypika.AsyncoreConnection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.BlockingConnection.close">(kombu.transport.pypika.BlockingConnection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.close">(kombu.transport.pypika.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Channel.close">(kombu.transport.pyredis.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Transport.Channel.close">(kombu.transport.pyredis.Transport.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.close">(kombu.transport.virtual.Channel method)</a></dt>
@@ -274,7 +275,8 @@
</dl></dd>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Transport.close_connection">close_connection() (kombu.transport.base.Transport method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.close_connection">(kombu.transport.librabbitmq.Transport method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.close_connection">(kombu.transport.pyamqplib.Transport method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.SyncTransport.close_connection">(kombu.transport.pypika.SyncTransport method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Transport.close_connection">(kombu.transport.virtual.Transport method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict">CompatOrderedDict (class in kombu.utils.compat)</a></dt>
@@ -283,14 +285,15 @@
<td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.compression">compression (kombu.messaging.Producer attribute)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.connect">connect() (kombu.connection.BrokerConnection method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection">Connection (class in kombu.transport.librabbitmq)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Connection">Connection (class in kombu.transport.pyamqplib)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.connection">connection (kombu.connection.BrokerConnection attribute)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Mailbox.connection">(kombu.pidbox.Mailbox attribute)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel">Connection.Channel (class in kombu.transport.librabbitmq)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message">Connection.Channel.Message (class in kombu.transport.librabbitmq)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError">Connection.Channel.Message.MessageStateError</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.AsyncoreTransport.Connection">Connection (kombu.transport.pypika.AsyncoreTransport attribute)</a></dt>
+ <dd><dl>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.SyncTransport.Connection">(kombu.transport.pypika.SyncTransport attribute)</a></dt>
+ </dl></dd>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.connection_errors">connection_errors (kombu.connection.BrokerConnection attribute)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Transport.connection_errors">(kombu.transport.base.Transport attribute)</a></dt>
@@ -316,9 +319,6 @@
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleQueue.consumer">(kombu.simple.SimpleQueue attribute)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.Consumer">Consumer() (kombu.pidbox.Node method)</a></dt>
- <dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Consumer">(kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
- </dl></dd>
<dt><a href="reference/kombu.compat.html#kombu.compat.ConsumerSet">ConsumerSet (class in kombu.compat)</a></dt>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.consuming_from">consuming_from() (kombu.compat.Consumer method)</a></dt>
<dd><dl>
@@ -333,9 +333,11 @@
</dl></dd>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Transport.create_channel">create_channel() (kombu.transport.base.Transport method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.create_channel">(kombu.transport.librabbitmq.Transport method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.create_channel">(kombu.transport.pyamqplib.Transport method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.SyncTransport.create_channel">(kombu.transport.pypika.SyncTransport method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Transport.create_channel">(kombu.transport.virtual.Transport method)</a></dt>
</dl></dd>
+ <dt><a href="reference/kombu.transport.pycouchdb.html#kombu.transport.pycouchdb.create_message_view">create_message_view() (in module kombu.transport.pycouchdb)</a></dt>
<dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.create_producer">create_producer() (kombu.pools.ProducerPool method)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.create_transport">create_transport() (kombu.connection.BrokerConnection method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Transport.cycle">cycle (kombu.transport.virtual.Transport attribute)</a></dt>
@@ -359,11 +361,13 @@
<dt><a href="reference/kombu.serialization.html#kombu.serialization.decode">decode() (in module kombu.serialization)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.decode">(kombu.transport.base.Message method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.decode">(kombu.transport.librabbitmq.Connection.Channel.Message method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.decode">(kombu.transport.virtual.Message method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.compression.html#kombu.compression.decompress">decompress() (in module kombu.compression)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.default_connection_params">default_connection_params (kombu.transport.librabbitmq.Transport attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.default_connection_params">default_connection_params (kombu.transport.pyamqplib.Transport attribute)</a></dt>
+ <dd><dl>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.SyncTransport.default_connection_params">(kombu.transport.pypika.SyncTransport attribute)</a></dt>
+ </dl></dd>
<dt><a href="reference/kombu.utils.encoding.html#kombu.utils.encoding.default_encoding">default_encoding() (in module kombu.utils.encoding)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Transport.default_port">default_port (kombu.transport.base.Transport attribute)</a></dt>
<dd><dl>
@@ -380,15 +384,13 @@
<dt><a href="reference/kombu.transport.virtual.exchange.html#kombu.transport.virtual.exchange.TopicExchange.deliver">(kombu.transport.virtual.exchange.TopicExchange method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.delivery_info">delivery_info (kombu.transport.base.Message attribute)</a></dt>
+ <dt><a href="reference/kombu.entity.html#kombu.entity.Exchange.delivery_mode">delivery_mode (kombu.entity.Exchange attribute)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.entity.html#kombu.entity.Exchange.delivery_mode">delivery_mode (kombu.entity.Exchange attribute)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.delivery_tag">delivery_tag (kombu.transport.base.Message attribute)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Channel.Message.delivery_tag">(kombu.transport.librabbitmq.Channel.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.delivery_tag">(kombu.transport.librabbitmq.Connection.Channel.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Message.delivery_tag">(kombu.transport.librabbitmq.Message attribute)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection.Channel.Message.delivery_tag">(kombu.transport.librabbitmq.Transport.Connection.Channel.Message attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.Message.delivery_tag">(kombu.transport.pyamqplib.Channel.Message attribute)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Message.delivery_tag">(kombu.transport.pyamqplib.Message attribute)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.syn.html#kombu.syn.detect_environment">detect_environment() (in module kombu.syn)</a></dt>
<dt><a href="reference/kombu.transport.virtual.exchange.html#kombu.transport.virtual.exchange.DirectExchange">DirectExchange (class in kombu.transport.virtual.exchange)</a></dt>
@@ -398,12 +400,15 @@
</dl></dd>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.dispatch">dispatch() (kombu.pidbox.Node method)</a></dt>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.dispatch_from_message">dispatch_from_message() (kombu.pidbox.Node method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Connection.dispatch_method">dispatch_method() (kombu.transport.pyamqplib.Connection method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.do_restore">do_restore (kombu.transport.virtual.Channel attribute)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.drain_events">drain_events() (kombu.connection.BrokerConnection method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Transport.drain_events">(kombu.transport.base.Transport method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.drain_events">(kombu.transport.librabbitmq.Connection method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.drain_events">(kombu.transport.librabbitmq.Transport method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Connection.drain_events">(kombu.transport.pyamqplib.Connection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.drain_events">(kombu.transport.pyamqplib.Transport method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.Connection.drain_events">(kombu.transport.pyamqplib.Transport.Connection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.SyncTransport.drain_events">(kombu.transport.pypika.SyncTransport method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.drain_events">(kombu.transport.virtual.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Transport.drain_events">(kombu.transport.virtual.Transport method)</a></dt>
</dl></dd>
@@ -423,11 +428,14 @@
<dt><a href="reference/kombu.compression.html#kombu.compression.encoders">encoders() (in module kombu.compression)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.ensure">ensure() (kombu.connection.BrokerConnection method)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.ensure_connection">ensure_connection() (kombu.connection.BrokerConnection method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.AsyncoreConnection.ensure_drain_events">ensure_drain_events() (kombu.transport.pypika.AsyncoreConnection method)</a></dt>
+ <dd><dl>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.BlockingConnection.ensure_drain_events">(kombu.transport.pypika.BlockingConnection method)</a></dt>
+ </dl></dd>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.entity_name">entity_name() (kombu.transport.SQS.Channel method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.entity_name">(kombu.transport.SQS.Transport.Channel method)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.common.html#kombu.common.entry_to_queue">entry_to_queue() (in module kombu.common)</a></dt>
<dt>environment variable</dt>
<dd><dl>
<dt><a href="changelog.html#index-0">AWS_ACCESS_KEY_ID</a></dt>
@@ -441,7 +449,8 @@
<td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Transport.establish_connection">establish_connection() (kombu.transport.base.Transport method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.establish_connection">(kombu.transport.librabbitmq.Transport method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.establish_connection">(kombu.transport.pyamqplib.Transport method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.SyncTransport.establish_connection">(kombu.transport.pypika.SyncTransport method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Transport.establish_connection">(kombu.transport.virtual.Transport method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.entity.html#kombu.entity.Exchange">Exchange (class in kombu.entity)</a></dt>
@@ -450,10 +459,7 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.exchange">(kombu.messaging.Producer attribute)</a></dt>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Mailbox.exchange">(kombu.pidbox.Mailbox attribute)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.exchange_declare">exchange_declare() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
- <dd><dl>
- <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.exchange_declare">(kombu.transport.virtual.Channel method)</a></dt>
- </dl></dd>
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.exchange_declare">exchange_declare() (kombu.transport.virtual.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.exchange_delete">exchange_delete() (kombu.transport.SQS.Channel method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.Table.exchange_delete">(kombu.transport.SQS.Channel.Table method)</a></dt>
@@ -479,16 +485,14 @@
<dt><a href="reference/kombu.transport.virtual.exchange.html#kombu.transport.virtual.exchange.FanoutExchange">FanoutExchange (class in kombu.transport.virtual.exchange)</a></dt>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.fetch">fetch() (kombu.compat.Consumer method)</a></dt>
<dt><a href="reference/kombu.utils.finalize.html#kombu.utils.finalize.Finalize">Finalize (class in kombu.utils.finalize)</a></dt>
+</dl></td>
+ <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.flow">flow() (kombu.compat.Consumer method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.ConsumerSet.flow">(kombu.compat.ConsumerSet method)</a></dt>
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Consumer.flow">(kombu.messaging.Consumer method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.flow">(kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.flow">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
-</dl></td>
- <td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.clocks.html#kombu.clocks.LamportClock.forward">forward() (kombu.clocks.LamportClock method)</a></dt>
<dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict.fromkeys">fromkeys() (kombu.utils.compat.CompatOrderedDict class method)</a></dt>
<dt><a href="reference/kombu.utils.html#kombu.utils.fxrange">fxrange() (in module kombu.utils)</a></dt>
<dt><a href="reference/kombu.utils.html#kombu.utils.fxrangemax">fxrangemax() (in module kombu.utils)</a></dt>
@@ -588,8 +592,6 @@
<dt><a href="reference/kombu.transport.virtual.exchange.html#kombu.transport.virtual.exchange.TopicExchange.key_to_pattern">key_to_pattern() (kombu.transport.virtual.exchange.TopicExchange method)</a></dt>
<dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict.keys">keys() (kombu.utils.compat.CompatOrderedDict method)</a></dt>
<dt><a href="reference/kombu.abstract.html#module-kombu.abstract">kombu.abstract (module)</a></dt>
- <dt><a href="reference/kombu.clocks.html#module-kombu.clocks">kombu.clocks (module)</a></dt>
- <dt><a href="reference/kombu.common.html#module-kombu.common">kombu.common (module)</a></dt>
<dt><a href="reference/kombu.compat.html#module-kombu.compat">kombu.compat (module)</a></dt>
<dt><a href="reference/kombu.compression.html#module-kombu.compression">kombu.compression (module)</a></dt>
<dt><a href="reference/kombu.connection.html#module-kombu.connection">kombu.connection (module)</a></dt>
@@ -604,11 +606,13 @@
<dt><a href="reference/kombu.transport.html#module-kombu.transport">kombu.transport (module)</a></dt>
<dt><a href="reference/kombu.transport.base.html#module-kombu.transport.base">kombu.transport.base (module)</a></dt>
<dt><a href="reference/kombu.transport.beanstalk.html#module-kombu.transport.beanstalk">kombu.transport.beanstalk (module)</a></dt>
-</dl></td>
- <td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#module-kombu.transport.librabbitmq">kombu.transport.librabbitmq (module)</a></dt>
<dt><a href="reference/kombu.transport.memory.html#module-kombu.transport.memory">kombu.transport.memory (module)</a></dt>
<dt><a href="reference/kombu.transport.mongodb.html#module-kombu.transport.mongodb">kombu.transport.mongodb (module)</a></dt>
+</dl></td>
+ <td style="width: 33%" valign="top"><dl>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#module-kombu.transport.pyamqplib">kombu.transport.pyamqplib (module)</a></dt>
+ <dt><a href="reference/kombu.transport.pycouchdb.html#module-kombu.transport.pycouchdb">kombu.transport.pycouchdb (module)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#module-kombu.transport.pypika">kombu.transport.pypika (module)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#module-kombu.transport.pyredis">kombu.transport.pyredis (module)</a></dt>
<dt><a href="reference/kombu.transport.SQS.html#module-kombu.transport.SQS">kombu.transport.SQS (module)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#module-kombu.transport.virtual">kombu.transport.virtual (module)</a></dt>
@@ -631,17 +635,15 @@
<h2 id="L">L</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.clocks.html#kombu.clocks.LamportClock">LamportClock (class in kombu.clocks)</a></dt>
<dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.LifoQueue">LifoQueue (class in kombu.utils.compat)</a></dt>
<dt><a href="reference/kombu.exceptions.html#kombu.exceptions.LimitExceeded">LimitExceeded</a></dt>
<dd><dl>
<dt><a href="reference/kombu.connection.html#kombu.connection.ChannelPool.LimitExceeded">(kombu.connection.ChannelPool attribute)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.ConnectionPool.LimitExceeded">(kombu.connection.ConnectionPool attribute)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.list_bindings">list_bindings() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.listen">listen() (kombu.pidbox.Node method)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.listen">listen() (kombu.pidbox.Node method)</a></dt>
<dt><a href="reference/kombu.utils.debug.html#kombu.utils.debug.Logwrapped">Logwrapped (class in kombu.utils.debug)</a></dt>
<dt><a href="reference/kombu.transport.virtual.exchange.html#kombu.transport.virtual.exchange.DirectExchange.lookup">lookup() (kombu.transport.virtual.exchange.DirectExchange method)</a></dt>
<dd><dl>
@@ -666,20 +668,19 @@
<dt><a href="reference/kombu.abstract.html#kombu.abstract.MaybeChannelBound">MaybeChannelBound (class in kombu.abstract)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message">Message (class in kombu.transport.base)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Message">(class in kombu.transport.librabbitmq)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Message">(class in kombu.transport.pyamqplib)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Message">(class in kombu.transport.pypika)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message">(class in kombu.transport.virtual)</a></dt>
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.Message">(kombu.transport.virtual.Channel attribute)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError.message">message (kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError attribute)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.Message">Message (kombu.transport.virtual.Channel attribute)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.MessageStateError.message">message (kombu.transport.virtual.Message.MessageStateError attribute)</a></dt>
<dt><a href="reference/kombu.entity.html#kombu.entity.Exchange.Message">Message() (kombu.entity.Exchange method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.MessageStateError">Message.MessageStateError</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Channel.message_to_python">message_to_python() (kombu.transport.librabbitmq.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.message_to_python">message_to_python() (kombu.transport.pyamqplib.Channel method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.message_to_python">(kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection.Channel.message_to_python">(kombu.transport.librabbitmq.Transport.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.message_to_python">(kombu.transport.pypika.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.message_to_python">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.exceptions.html#kombu.exceptions.MessageStateError">MessageStateError</a></dt>
@@ -713,6 +714,7 @@
<h2 id="O">O</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.AsyncoreConnection.on_data_available">on_data_available() (kombu.transport.pypika.AsyncoreConnection method)</a></dt>
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Consumer.on_decode_error">on_decode_error (kombu.messaging.Consumer attribute)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
@@ -726,7 +728,6 @@
<dt><a href="reference/kombu.utils.html#kombu.utils.partition">partition() (in module kombu.utils)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.payload">payload (kombu.transport.base.Message attribute)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.payload">(kombu.transport.librabbitmq.Connection.Channel.Message attribute)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.payload">(kombu.transport.virtual.Message attribute)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.Pool">Pool() (kombu.connection.BrokerConnection method)</a></dt>
@@ -738,10 +739,9 @@
<dd><dl>
<dt><a href="reference/kombu.transport.virtual.exchange.html#kombu.transport.virtual.exchange.TopicExchange.prepare_bind">(kombu.transport.virtual.exchange.TopicExchange method)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Channel.prepare_message">prepare_message() (kombu.transport.librabbitmq.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Channel.prepare_message">prepare_message() (kombu.transport.pyamqplib.Channel method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.prepare_message">(kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection.Channel.prepare_message">(kombu.transport.librabbitmq.Transport.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.prepare_message">(kombu.transport.pypika.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.prepare_message">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.process_next">process_next() (kombu.compat.Consumer method)</a></dt>
@@ -752,7 +752,6 @@
<dd><dl>
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleQueue.producer">(kombu.simple.SimpleQueue attribute)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Producer">Producer() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
<dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool">ProducerPool (class in kombu.pools)</a></dt>
<dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer">ProducerPool.Producer (class in kombu.pools)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.properties">properties (kombu.transport.base.Message attribute)</a></dt>
@@ -802,12 +801,10 @@
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.Table.queue_bind">(kombu.transport.SQS.Channel.Table method)</a></dt>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.Table.queue_bind">(kombu.transport.SQS.Transport.Channel.Table method)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.queue_bind">(kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.queue_bind">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.entity.html#kombu.entity.Queue.queue_declare">queue_declare() (kombu.entity.Queue method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.queue_declare">(kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.queue_declare">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.Table.queue_delete">queue_delete() (kombu.transport.SQS.Channel.Table method)</a></dt>
@@ -819,11 +816,10 @@
<dd><dl>
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleQueue.queue_opts">(kombu.simple.SimpleQueue attribute)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.queue_purge">queue_purge() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.Channel.queue_purge">queue_purge() (kombu.transport.pypika.Channel method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.queue_purge">(kombu.transport.virtual.Channel method)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.queue_unbind">queue_unbind() (kombu.transport.librabbitmq.Connection.Channel method)</a></dt>
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Consumer.queues">queues (kombu.messaging.Consumer attribute)</a></dt>
</dl></td>
</tr></table>
@@ -832,6 +828,10 @@
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.serialization.html#kombu.serialization.raw_encode">raw_encode() (in module kombu.serialization)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Connection.read_timeout">read_timeout() (kombu.transport.pyamqplib.Connection method)</a></dt>
+ <dd><dl>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.Connection.read_timeout">(kombu.transport.pyamqplib.Transport.Connection method)</a></dt>
+ </dl></dd>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.receive">receive() (kombu.compat.Consumer method)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.ConsumerSet.receive">(kombu.compat.ConsumerSet method)</a></dt>
@@ -858,7 +858,6 @@
<dt><a href="reference/kombu.serialization.html#kombu.serialization.registry">registry (in module kombu.serialization)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.reject">reject() (kombu.transport.base.Message method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.reject">(kombu.transport.librabbitmq.Connection.Channel.Message method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.reject">(kombu.transport.virtual.Message method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.reject">(kombu.transport.virtual.QoS method)</a></dt>
</dl></dd>
@@ -872,13 +871,12 @@
</dl></dd>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.reply">reply() (kombu.pidbox.Node method)</a></dt>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Mailbox.reply_exchange">reply_exchange (kombu.pidbox.Mailbox attribute)</a></dt>
- <dt><a href="reference/kombu.utils.html#kombu.utils.reprcall">reprcall() (in module kombu.utils)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
+ <dt><a href="reference/kombu.utils.html#kombu.utils.reprcall">reprcall() (in module kombu.utils)</a></dt>
<dt><a href="reference/kombu.utils.html#kombu.utils.reprkwargs">reprkwargs() (in module kombu.utils)</a></dt>
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.requeue">requeue() (kombu.transport.base.Message method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Message.requeue">(kombu.transport.librabbitmq.Connection.Channel.Message method)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.requeue">(kombu.transport.virtual.Message method)</a></dt>
</dl></dd>
<dt><a href="reference/kombu.pools.html#kombu.pools.reset">reset() (in module kombu.pools)</a></dt>
@@ -928,9 +926,9 @@
<dt><a href="reference/kombu.serialization.html#kombu.serialization.SerializerNotInstalled">SerializerNotInstalled</a></dt>
<dt><a href="reference/kombu.pools.html#kombu.pools.set_limit">set_limit() (in module kombu.pools)</a></dt>
<dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict.setdefault">setdefault() (kombu.utils.compat.CompatOrderedDict method)</a></dt>
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.setup">setup() (kombu.pools.ProducerPool method)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.setup">setup() (kombu.pools.ProducerPool method)</a></dt>
<dt><a href="reference/kombu.utils.debug.html#kombu.utils.debug.setup_logging">setup_logging() (in module kombu.utils.debug)</a></dt>
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleBuffer">SimpleBuffer (class in kombu.simple)</a></dt>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.SimpleBuffer">SimpleBuffer() (kombu.connection.BrokerConnection method)</a></dt>
@@ -951,10 +949,16 @@
<dd><dl>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Transport.Channel.subclient">(kombu.transport.pyredis.Transport.Channel attribute)</a></dt>
</dl></dd>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.AsyncoreConnection.Super">Super (kombu.transport.pypika.AsyncoreConnection attribute)</a></dt>
+ <dd><dl>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.BlockingConnection.Super">(kombu.transport.pypika.BlockingConnection attribute)</a></dt>
+ </dl></dd>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.supports_fanout">supports_fanout (kombu.transport.SQS.Channel attribute)</a></dt>
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.supports_fanout">(kombu.transport.SQS.Transport.Channel attribute)</a></dt>
</dl></dd>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.SyncTransport">SyncTransport (class in kombu.transport.pypika)</a></dt>
+ <dt><a href="reference/kombu.transport.pypika.html#kombu.transport.pypika.SyncTransport.Message">SyncTransport.Message (class in kombu.transport.pypika)</a></dt>
</dl></td>
</tr></table>
@@ -971,9 +975,10 @@
<dd><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport">(class in kombu.transport.SQS)</a></dt>
<dt><a href="reference/kombu.transport.beanstalk.html#kombu.transport.beanstalk.Transport">(class in kombu.transport.beanstalk)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport">(class in kombu.transport.librabbitmq)</a></dt>
<dt><a href="reference/kombu.transport.memory.html#kombu.transport.memory.Transport">(class in kombu.transport.memory)</a></dt>
<dt><a href="reference/kombu.transport.mongodb.html#kombu.transport.mongodb.Transport">(class in kombu.transport.mongodb)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport">(class in kombu.transport.pyamqplib)</a></dt>
+ <dt><a href="reference/kombu.transport.pycouchdb.html#kombu.transport.pycouchdb.Transport">(class in kombu.transport.pycouchdb)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Transport">(class in kombu.transport.pyredis)</a></dt>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Transport">(class in kombu.transport.virtual)</a></dt>
</dl></dd>
@@ -983,14 +988,13 @@
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel">(class in kombu.transport.SQS)</a></dt>
<dt><a href="reference/kombu.transport.memory.html#kombu.transport.memory.Transport.Channel">(class in kombu.transport.memory)</a></dt>
<dt><a href="reference/kombu.transport.mongodb.html#kombu.transport.mongodb.Transport.Channel">(class in kombu.transport.mongodb)</a></dt>
+ <dt><a href="reference/kombu.transport.pycouchdb.html#kombu.transport.pycouchdb.Transport.Channel">(class in kombu.transport.pycouchdb)</a></dt>
<dt><a href="reference/kombu.transport.pyredis.html#kombu.transport.pyredis.Transport.Channel">(class in kombu.transport.pyredis)</a></dt>
</dl></dd>
- <dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.Table">Transport.Channel.Table (class in kombu.transport.SQS)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection">Transport.Connection (class in kombu.transport.librabbitmq)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection.Channel">Transport.Connection.Channel (class in kombu.transport.librabbitmq)</a></dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection.Channel.Message">Transport.Connection.Channel.Message (class in kombu.transport.librabbitmq)</a></dt>
+ <dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.Table">Transport.Channel.Table (class in kombu.transport.SQS)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.Connection">Transport.Connection (class in kombu.transport.pyamqplib)</a></dt>
<dt><a href="reference/kombu.transport.html#kombu.transport.TRANSPORT_ALIASES">TRANSPORT_ALIASES (in module kombu.transport)</a></dt>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.transport_options">transport_options (kombu.transport.SQS.Channel attribute)</a></dt>
<dd><dl>
@@ -1011,7 +1015,6 @@
<dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict.update">update() (kombu.utils.compat.CompatOrderedDict method)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.utils.html#kombu.utils.uuid">uuid() (in module kombu.utils)</a></dt>
<dt><a href="reference/kombu.utils.html#kombu.utils.uuid4">uuid4() (in module kombu.utils)</a></dt>
</dl></td>
</tr></table>
@@ -1019,8 +1022,8 @@
<h2 id="V">V</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.clocks.html#kombu.clocks.LamportClock.value">value (kombu.clocks.LamportClock attribute)</a></dt>
<dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict.values">values() (kombu.utils.compat.CompatOrderedDict method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.verify_connection">verify_connection() (kombu.transport.pyamqplib.Transport method)</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.visibility_timeout">visibility_timeout (kombu.transport.SQS.Channel attribute)</a></dt>
@@ -1034,12 +1037,19 @@
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.wait">wait() (kombu.compat.Consumer method)</a></dt>
- <dt><a href="reference/kombu.abstract.html#kombu.abstract.MaybeChannelBound.when_bound">when_bound() (kombu.abstract.MaybeChannelBound method)</a></dt>
<dd><dl>
- <dt><a href="reference/kombu.entity.html#kombu.entity.Queue.when_bound">(kombu.entity.Queue method)</a></dt>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Connection.wait">(kombu.transport.pyamqplib.Connection method)</a></dt>
+ </dl></dd>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Connection.wait_multi">wait_multi() (kombu.transport.pyamqplib.Connection method)</a></dt>
+ <dd><dl>
+ <dt><a href="reference/kombu.transport.pyamqplib.html#kombu.transport.pyamqplib.Transport.Connection.wait_multi">(kombu.transport.pyamqplib.Transport.Connection method)</a></dt>
</dl></dd>
</dl></td>
<td style="width: 33%" valign="top"><dl>
+ <dt><a href="reference/kombu.abstract.html#kombu.abstract.MaybeChannelBound.when_bound">when_bound() (kombu.abstract.MaybeChannelBound method)</a></dt>
+ <dd><dl>
+ <dt><a href="reference/kombu.entity.html#kombu.entity.Queue.when_bound">(kombu.entity.Queue method)</a></dt>
+ </dl></dd>
<dt><a href="reference/kombu.transport.virtual.exchange.html#kombu.transport.virtual.exchange.TopicExchange.wildcards">wildcards (kombu.transport.virtual.exchange.TopicExchange attribute)</a></dt>
</dl></td>
</tr></table>
@@ -1079,7 +1089,7 @@
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/index.html b/index.html
index 1a222e22..60f7e23a 100644
--- a/index.html
+++ b/index.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Kombu Documentation &mdash; Kombu v1.3.1 documentation</title>
+ <title>Kombu Documentation &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="#" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="#" />
<link rel="next" title="kombu - AMQP Messaging Framework for Python" href="introduction.html" />
</head>
<body>
@@ -37,7 +37,7 @@
<li class="right" >
<a href="introduction.html" title="kombu - AMQP Messaging Framework for Python"
accesskey="N">next</a> |</li>
- <li><a href="#">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="#">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -78,17 +78,17 @@
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.simple.html">kombu.simple</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.messaging.html">kombu.messaging</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.entity.html">kombu.entity</a></li>
-<li class="toctree-l2"><a class="reference internal" href="reference/kombu.common.html">Common Utilities - kombu.common</a></li>
-<li class="toctree-l2"><a class="reference internal" href="reference/kombu.clocks.html">Clocks and Synchronization - kombu.clocks</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.compat.html">kombu.compat</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.pidbox.html">kombu.pidbox</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.exceptions.html">kombu.exceptions</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.html">kombu.transport</a></li>
-<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.librabbitmq.html">kombu.transport.librabbitmq</a></li>
+<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.pyamqplib.html">kombu.transport.pyamqplib</a></li>
+<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.pypika.html">kombu.transport.pypika</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.memory.html">kombu.transport.memory</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.pyredis.html">kombu.transport.pyredis</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.beanstalk.html">kombu.transport.beanstalk</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.mongodb.html">kombu.transport.mongodb</a></li>
+<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.pycouchdb.html">kombu.transport.pycouchdb</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.SQS.html">kombu.transport.SQS</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.base.html">kombu.transport.base</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/kombu.transport.virtual.html">kombu.transport.virtual</a></li>
@@ -109,6 +109,7 @@
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="changelog.html">Change history</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-3-2">1.3.2</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-3-1">1.3.1</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-3-0">1.3.0</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-2-1">1.2.1</a></li>
@@ -121,7 +122,7 @@
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-1-1">1.1.1</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-1-0">1.1.0</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-0-7">1.0.7</a></li>
-<li class="toctree-l2"><a class="reference internal" href="changelog.html#id13">1.0.6</a></li>
+<li class="toctree-l2"><a class="reference internal" href="changelog.html#id14">1.0.6</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-0-5">1.0.5</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-0-4">1.0.4</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-1-0-3">1.0.3</a></li>
@@ -189,7 +190,7 @@
<li class="right" >
<a href="introduction.html" title="kombu - AMQP Messaging Framework for Python"
>next</a> |</li>
- <li><a href="#">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="#">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/introduction.html b/introduction.html
index fe64730f..1de9bb2f 100644
--- a/introduction.html
+++ b/introduction.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu - AMQP Messaging Framework for Python &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu - AMQP Messaging Framework for Python &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="index.html" />
<link rel="next" title="User Guide" href="userguide/index.html" />
<link rel="prev" title="Kombu Documentation" href="index.html" />
</head>
@@ -41,7 +41,7 @@
<li class="right" >
<a href="index.html" title="Kombu Documentation"
accesskey="P">previous</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -195,59 +195,38 @@ Can be disabled by setting the <tt class="docutils literal"><span class="pre">su
</div>
<div class="section" id="quick-overview">
<h3>Quick overview<a class="headerlink" href="#quick-overview" title="Permalink to this headline">¶</a></h3>
-<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">kombu</span> <span class="kn">import</span> <span class="n">BrokerConnection</span><span class="p">,</span> <span class="n">Exchange</span><span class="p">,</span> <span class="n">Queue</span>
+<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">kombu.connection</span> <span class="kn">import</span> <span class="n">BrokerConnection</span>
+<span class="kn">from</span> <span class="nn">kombu.messaging</span> <span class="kn">import</span> <span class="n">Exchange</span><span class="p">,</span> <span class="n">Queue</span><span class="p">,</span> <span class="n">Consumer</span><span class="p">,</span> <span class="n">Producer</span>
<span class="n">media_exchange</span> <span class="o">=</span> <span class="n">Exchange</span><span class="p">(</span><span class="s">&quot;media&quot;</span><span class="p">,</span> <span class="s">&quot;direct&quot;</span><span class="p">,</span> <span class="n">durable</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
<span class="n">video_queue</span> <span class="o">=</span> <span class="n">Queue</span><span class="p">(</span><span class="s">&quot;video&quot;</span><span class="p">,</span> <span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span> <span class="n">routing_key</span><span class="o">=</span><span class="s">&quot;video&quot;</span><span class="p">)</span>
-<span class="c"># connections</span>
-<span class="k">with</span> <span class="n">BrokerConnection</span><span class="p">(</span><span class="s">&quot;amqp://guest:guest@localhost//&quot;</span><span class="p">)</span> <span class="k">as</span> <span class="n">conn</span><span class="p">:</span>
+<span class="c"># connections/channels</span>
+<span class="n">connection</span> <span class="o">=</span> <span class="n">BrokerConnection</span><span class="p">(</span><span class="s">&quot;localhost&quot;</span><span class="p">,</span> <span class="s">&quot;guest&quot;</span><span class="p">,</span> <span class="s">&quot;guest&quot;</span><span class="p">,</span> <span class="s">&quot;/&quot;</span><span class="p">)</span>
+<span class="n">channel</span> <span class="o">=</span> <span class="n">connection</span><span class="o">.</span><span class="n">channel</span><span class="p">()</span>
- <span class="c"># produce</span>
- <span class="k">with</span> <span class="n">conn</span><span class="o">.</span><span class="n">Producer</span><span class="p">(</span><span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span>
- <span class="n">serializer</span><span class="o">=</span><span class="s">&quot;json&quot;</span><span class="p">)</span> <span class="k">as</span> <span class="n">producer</span><span class="p">:</span>
- <span class="n">producer</span><span class="o">.</span><span class="n">publish</span><span class="p">({</span><span class="s">&quot;name&quot;</span><span class="p">:</span> <span class="s">&quot;/tmp/lolcat1.avi&quot;</span><span class="p">,</span> <span class="s">&quot;size&quot;</span><span class="p">:</span> <span class="mi">1301013</span><span class="p">})</span>
+<span class="c"># produce</span>
+<span class="n">producer</span> <span class="o">=</span> <span class="n">Producer</span><span class="p">(</span><span class="n">channel</span><span class="p">,</span> <span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span> <span class="n">serializer</span><span class="o">=</span><span class="s">&quot;json&quot;</span><span class="p">)</span>
+<span class="n">producer</span><span class="o">.</span><span class="n">publish</span><span class="p">({</span><span class="s">&quot;name&quot;</span><span class="p">:</span> <span class="s">&quot;/tmp/lolcat1.avi&quot;</span><span class="p">,</span> <span class="s">&quot;size&quot;</span><span class="p">:</span> <span class="mi">1301013</span><span class="p">})</span>
- <span class="c"># consume</span>
- <span class="k">with</span> <span class="n">conn</span><span class="o">.</span><span class="n">Consumer</span><span class="p">(</span><span class="n">video_queue</span><span class="p">,</span> <span class="n">callbacks</span><span class="o">=</span><span class="p">[</span><span class="n">process_media</span><span class="p">])</span> <span class="k">as</span> <span class="n">consumer</span><span class="p">:</span>
- <span class="c"># Process messages and handle events on all channels</span>
- <span class="k">while</span> <span class="bp">True</span><span class="p">:</span>
- <span class="n">connection</span><span class="o">.</span><span class="n">drain_events</span><span class="p">()</span>
+<span class="c"># consume</span>
+<span class="n">consumer</span> <span class="o">=</span> <span class="n">Consumer</span><span class="p">(</span><span class="n">channel</span><span class="p">,</span> <span class="n">video_queue</span><span class="p">)</span>
+<span class="n">consumer</span><span class="o">.</span><span class="n">register_callback</span><span class="p">(</span><span class="n">process_media</span><span class="p">)</span>
+<span class="n">consumer</span><span class="o">.</span><span class="n">consume</span><span class="p">()</span>
+
+<span class="c"># Process messages on all channels</span>
+<span class="k">while</span> <span class="bp">True</span><span class="p">:</span>
+ <span class="n">connection</span><span class="o">.</span><span class="n">drain_events</span><span class="p">()</span>
<span class="c"># Consume from several queues on the same channel:</span>
<span class="n">video_queue</span> <span class="o">=</span> <span class="n">Queue</span><span class="p">(</span><span class="s">&quot;video&quot;</span><span class="p">,</span> <span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span> <span class="n">key</span><span class="o">=</span><span class="s">&quot;video&quot;</span><span class="p">)</span>
<span class="n">image_queue</span> <span class="o">=</span> <span class="n">Queue</span><span class="p">(</span><span class="s">&quot;image&quot;</span><span class="p">,</span> <span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span> <span class="n">key</span><span class="o">=</span><span class="s">&quot;image&quot;</span><span class="p">)</span>
-<span class="k">with</span> <span class="n">connection</span><span class="o">.</span><span class="n">Consumer</span><span class="p">([</span><span class="n">video_queue</span><span class="p">,</span> <span class="n">image_queue</span><span class="p">],</span>
- <span class="n">callbacks</span><span class="o">=</span><span class="p">[</span><span class="n">process_media</span><span class="p">])</span> <span class="k">as</span> <span class="n">consumer</span><span class="p">:</span>
- <span class="k">while</span> <span class="bp">True</span><span class="p">:</span>
- <span class="n">connection</span><span class="o">.</span><span class="n">drain_events</span><span class="p">()</span>
-</pre></div>
-</div>
-<p>Or handle channels menually:</p>
-<div class="highlight-python"><div class="highlight"><pre><span class="k">with</span> <span class="n">connection</span><span class="o">.</span><span class="n">channel</span><span class="p">()</span> <span class="k">as</span> <span class="n">channel</span><span class="p">:</span>
- <span class="n">producer</span> <span class="o">=</span> <span class="n">Producer</span><span class="p">(</span><span class="n">channel</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
- <span class="n">consumer</span> <span class="o">=</span> <span class="n">Producer</span><span class="p">(</span><span class="n">channel</span><span class="p">)</span>
-</pre></div>
-</div>
-<p>All objects can be used outside of with statements too,
-just remember to close the objects after use:</p>
-<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">kombu</span> <span class="kn">import</span> <span class="n">BrokerConnection</span><span class="p">,</span> <span class="n">Consumer</span><span class="p">,</span> <span class="n">Producer</span>
-
-<span class="n">connection</span> <span class="o">=</span> <span class="n">BrokerConnection</span><span class="p">()</span>
- <span class="c"># ...</span>
-<span class="n">connection</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
-
-<span class="n">consumer</span> <span class="o">=</span> <span class="n">Consumer</span><span class="p">(</span><span class="n">channel_or_connection</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
-<span class="n">consumer</span><span class="o">.</span><span class="n">register_callback</span><span class="p">(</span><span class="n">my_callback</span><span class="p">)</span>
+<span class="n">consumer</span> <span class="o">=</span> <span class="n">Consumer</span><span class="p">(</span><span class="n">channel</span><span class="p">,</span> <span class="p">[</span><span class="n">video_queue</span><span class="p">,</span> <span class="n">image_queue</span><span class="p">])</span>
<span class="n">consumer</span><span class="o">.</span><span class="n">consume</span><span class="p">()</span>
- <span class="c"># ....</span>
-<span class="n">consumer</span><span class="o">.</span><span class="n">cancel</span><span class="p">()</span>
-
-<span class="n">producer</span> <span class="o">=</span> <span class="n">Producer</span><span class="p">(</span><span class="n">channel_or_connection</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
- <span class="c"># ....</span>
-<span class="n">producer</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
+<span class="k">while</span> <span class="bp">True</span><span class="p">:</span>
+ <span class="n">connection</span><span class="o">.</span><span class="n">drain_events</span><span class="p">()</span>
</pre></div>
</div>
<p><cite>Exchange</cite> and <cite>Queue</cite> are simply declarations that can be pickled
@@ -455,7 +434,7 @@ file in the top distribution directory for the full license text.</p>
<li class="right" >
<a href="index.html" title="Kombu Documentation"
>previous</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/objects.inv b/objects.inv
index 239162ec..fbd37a82 100644
--- a/objects.inv
+++ b/objects.inv
Binary files differ
diff --git a/py-modindex.html b/py-modindex.html
index e52778d2..e4fa7236 100644
--- a/py-modindex.html
+++ b/py-modindex.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Python Module Index &mdash; Kombu v1.3.1 documentation</title>
+ <title>Python Module Index &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="index.html" />
@@ -36,7 +36,7 @@
<li class="right" >
<a href="#" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -70,16 +70,6 @@
<tr class="cg-1">
<td></td>
<td>&nbsp;&nbsp;&nbsp;
- <a href="reference/kombu.clocks.html#module-kombu.clocks"><tt class="xref">kombu.clocks</tt></a></td><td>
- <em></em></td></tr>
- <tr class="cg-1">
- <td></td>
- <td>&nbsp;&nbsp;&nbsp;
- <a href="reference/kombu.common.html#module-kombu.common"><tt class="xref">kombu.common</tt></a></td><td>
- <em></em></td></tr>
- <tr class="cg-1">
- <td></td>
- <td>&nbsp;&nbsp;&nbsp;
<a href="reference/kombu.compat.html#module-kombu.compat"><tt class="xref">kombu.compat</tt></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
@@ -150,17 +140,27 @@
<tr class="cg-1">
<td></td>
<td>&nbsp;&nbsp;&nbsp;
- <a href="reference/kombu.transport.librabbitmq.html#module-kombu.transport.librabbitmq"><tt class="xref">kombu.transport.librabbitmq</tt></a></td><td>
+ <a href="reference/kombu.transport.memory.html#module-kombu.transport.memory"><tt class="xref">kombu.transport.memory</tt></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>&nbsp;&nbsp;&nbsp;
- <a href="reference/kombu.transport.memory.html#module-kombu.transport.memory"><tt class="xref">kombu.transport.memory</tt></a></td><td>
+ <a href="reference/kombu.transport.mongodb.html#module-kombu.transport.mongodb"><tt class="xref">kombu.transport.mongodb</tt></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>&nbsp;&nbsp;&nbsp;
- <a href="reference/kombu.transport.mongodb.html#module-kombu.transport.mongodb"><tt class="xref">kombu.transport.mongodb</tt></a></td><td>
+ <a href="reference/kombu.transport.pyamqplib.html#module-kombu.transport.pyamqplib"><tt class="xref">kombu.transport.pyamqplib</tt></a></td><td>
+ <em></em></td></tr>
+ <tr class="cg-1">
+ <td></td>
+ <td>&nbsp;&nbsp;&nbsp;
+ <a href="reference/kombu.transport.pycouchdb.html#module-kombu.transport.pycouchdb"><tt class="xref">kombu.transport.pycouchdb</tt></a></td><td>
+ <em></em></td></tr>
+ <tr class="cg-1">
+ <td></td>
+ <td>&nbsp;&nbsp;&nbsp;
+ <a href="reference/kombu.transport.pypika.html#module-kombu.transport.pypika"><tt class="xref">kombu.transport.pypika</tt></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
@@ -258,7 +258,7 @@
<li class="right" >
<a href="#" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/reference/index.html b/reference/index.html
index b5d4b5f7..728b1541 100644
--- a/reference/index.html
+++ b/reference/index.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>API Reference &mdash; Kombu v1.3.1 documentation</title>
+ <title>API Reference &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="next" title="kombu.connection" href="kombu.connection.html" />
<link rel="prev" title="Frequently Asked Questions" href="../faq.html" />
</head>
@@ -41,7 +41,7 @@
<li class="right" >
<a href="../faq.html" title="Frequently Asked Questions"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -58,7 +58,7 @@
<tbody valign="top">
<tr class="field"><th class="field-name">Release:</th><td class="field-body">1.3</td>
</tr>
-<tr class="field"><th class="field-name">Date:</th><td class="field-body">September 07, 2011</td>
+<tr class="field"><th class="field-name">Date:</th><td class="field-body">September 12, 2011</td>
</tr>
</tbody>
</table>
@@ -84,8 +84,6 @@
<li class="toctree-l2"><a class="reference internal" href="kombu.entity.html#queue">Queue</a></li>
</ul>
</li>
-<li class="toctree-l1"><a class="reference internal" href="kombu.common.html">Common Utilities - kombu.common</a></li>
-<li class="toctree-l1"><a class="reference internal" href="kombu.clocks.html">Clocks and Synchronization - kombu.clocks</a></li>
<li class="toctree-l1"><a class="reference internal" href="kombu.compat.html">kombu.compat</a><ul>
<li class="toctree-l2"><a class="reference internal" href="kombu.compat.html#publisher">Publisher</a></li>
<li class="toctree-l2"><a class="reference internal" href="kombu.compat.html#consumer">Consumer</a></li>
@@ -104,11 +102,18 @@
<li class="toctree-l2"><a class="reference internal" href="kombu.transport.html#functions">Functions</a></li>
</ul>
</li>
-<li class="toctree-l1"><a class="reference internal" href="kombu.transport.librabbitmq.html">kombu.transport.librabbitmq</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="kombu.transport.librabbitmq.html#transport">Transport</a></li>
-<li class="toctree-l2"><a class="reference internal" href="kombu.transport.librabbitmq.html#connection">Connection</a></li>
-<li class="toctree-l2"><a class="reference internal" href="kombu.transport.librabbitmq.html#channel">Channel</a></li>
-<li class="toctree-l2"><a class="reference internal" href="kombu.transport.librabbitmq.html#message">Message</a></li>
+<li class="toctree-l1"><a class="reference internal" href="kombu.transport.pyamqplib.html">kombu.transport.pyamqplib</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pyamqplib.html#transport">Transport</a></li>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pyamqplib.html#connection">Connection</a></li>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pyamqplib.html#channel">Channel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pyamqplib.html#message">Message</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="kombu.transport.pypika.html">kombu.transport.pypika</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pypika.html#transports">Transports</a></li>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pypika.html#connections">Connections</a></li>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pypika.html#channel">Channel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pypika.html#message">Message</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="kombu.transport.memory.html">kombu.transport.memory</a><ul>
@@ -131,6 +136,12 @@
<li class="toctree-l2"><a class="reference internal" href="kombu.transport.mongodb.html#channel">Channel</a></li>
</ul>
</li>
+<li class="toctree-l1"><a class="reference internal" href="kombu.transport.pycouchdb.html">kombu.transport.pycouchdb</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pycouchdb.html#transport">Transport</a></li>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pycouchdb.html#channel">Channel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="kombu.transport.pycouchdb.html#functions">Functions</a></li>
+</ul>
+</li>
<li class="toctree-l1"><a class="reference internal" href="kombu.transport.SQS.html">kombu.transport.SQS</a><ul>
<li class="toctree-l2"><a class="reference internal" href="kombu.transport.SQS.html#transport">Transport</a></li>
<li class="toctree-l2"><a class="reference internal" href="kombu.transport.SQS.html#channel">Channel</a></li>
@@ -234,7 +245,7 @@
<li class="right" >
<a href="../faq.html" title="Frequently Asked Questions"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/reference/kombu.abstract.html b/reference/kombu.abstract.html
index 89c73790..68eaa3ad 100644
--- a/reference/kombu.abstract.html
+++ b/reference/kombu.abstract.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.compression &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.compression &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Async Utilities - kombu.syn" href="kombu.syn.html" />
<link rel="prev" title="General Pools - kombu.pools" href="kombu.pools.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.pools.html" title="General Pools - kombu.pools"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -165,7 +165,7 @@
<li class="right" >
<a href="kombu.pools.html" title="General Pools - kombu.pools"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.compat.html b/reference/kombu.compat.html
index a65d41dc..c07456d0 100644
--- a/reference/kombu.compat.html
+++ b/reference/kombu.compat.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.compat &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.compat &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,10 +21,10 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.pidbox" href="kombu.pidbox.html" />
- <link rel="prev" title="Clocks and Synchronization - kombu.clocks" href="kombu.clocks.html" />
+ <link rel="prev" title="kombu.entity" href="kombu.entity.html" />
</head>
<body>
<div class="related">
@@ -40,9 +40,9 @@
<a href="kombu.pidbox.html" title="kombu.pidbox"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="kombu.clocks.html" title="Clocks and Synchronization - kombu.clocks"
+ <a href="kombu.entity.html" title="kombu.entity"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -547,8 +547,8 @@ and the <cite>Message</cite> instance (a subclass of
</ul>
<h4>Previous topic</h4>
- <p class="topless"><a href="kombu.clocks.html"
- title="previous chapter">Clocks and Synchronization - kombu.clocks</a></p>
+ <p class="topless"><a href="kombu.entity.html"
+ title="previous chapter">kombu.entity</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="kombu.pidbox.html"
title="next chapter">kombu.pidbox</a></p>
@@ -587,9 +587,9 @@ and the <cite>Message</cite> instance (a subclass of
<a href="kombu.pidbox.html" title="kombu.pidbox"
>next</a> |</li>
<li class="right" >
- <a href="kombu.clocks.html" title="Clocks and Synchronization - kombu.clocks"
+ <a href="kombu.entity.html" title="kombu.entity"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.compression.html b/reference/kombu.compression.html
index 73fb5f21..d46d103f 100644
--- a/reference/kombu.compression.html
+++ b/reference/kombu.compression.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.compression &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.compression &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="General Pools - kombu.pools" href="kombu.pools.html" />
<link rel="prev" title="kombu.serialization" href="kombu.serialization.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.serialization.html" title="kombu.serialization"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -217,7 +217,7 @@
<li class="right" >
<a href="kombu.serialization.html" title="kombu.serialization"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.connection.html b/reference/kombu.connection.html
index 355c1a3c..47c25ceb 100644
--- a/reference/kombu.connection.html
+++ b/reference/kombu.connection.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.connection &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.connection &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.simple" href="kombu.simple.html" />
<link rel="prev" title="API Reference" href="index.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="index.html" title="API Reference"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -559,7 +559,7 @@ be acquired if so needed.</p>
<li class="right" >
<a href="index.html" title="API Reference"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.entity.html b/reference/kombu.entity.html
index 468ae83e..ec05f2f3 100644
--- a/reference/kombu.entity.html
+++ b/reference/kombu.entity.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.entity &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.entity &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
- <link rel="next" title="Common Utilities - kombu.common" href="kombu.common.html" />
+ <link rel="next" title="kombu.compat" href="kombu.compat.html" />
<link rel="prev" title="kombu.messaging" href="kombu.messaging.html" />
</head>
<body>
@@ -37,12 +37,12 @@
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.common.html" title="Common Utilities - kombu.common"
+ <a href="kombu.compat.html" title="kombu.compat"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="kombu.messaging.html" title="kombu.messaging"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -629,8 +629,8 @@ without modifying the server state.</li>
<p class="topless"><a href="kombu.messaging.html"
title="previous chapter">kombu.messaging</a></p>
<h4>Next topic</h4>
- <p class="topless"><a href="kombu.common.html"
- title="next chapter">Common Utilities - kombu.common</a></p>
+ <p class="topless"><a href="kombu.compat.html"
+ title="next chapter">kombu.compat</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/reference/kombu.entity.txt"
@@ -663,12 +663,12 @@ without modifying the server state.</li>
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.common.html" title="Common Utilities - kombu.common"
+ <a href="kombu.compat.html" title="kombu.compat"
>next</a> |</li>
<li class="right" >
<a href="kombu.messaging.html" title="kombu.messaging"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.exceptions.html b/reference/kombu.exceptions.html
index f64827db..edc3299c 100644
--- a/reference/kombu.exceptions.html
+++ b/reference/kombu.exceptions.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.exceptions &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.exceptions &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport" href="kombu.transport.html" />
<link rel="prev" title="kombu.pidbox" href="kombu.pidbox.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.pidbox.html" title="kombu.pidbox"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -158,7 +158,7 @@
<li class="right" >
<a href="kombu.pidbox.html" title="kombu.pidbox"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.messaging.html b/reference/kombu.messaging.html
index 3f6a0498..cbe64017 100644
--- a/reference/kombu.messaging.html
+++ b/reference/kombu.messaging.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.messaging &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.messaging &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.entity" href="kombu.entity.html" />
<link rel="prev" title="kombu.simple" href="kombu.simple.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.simple.html" title="kombu.simple"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -473,7 +473,7 @@ registered.</p>
<li class="right" >
<a href="kombu.simple.html" title="kombu.simple"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.pidbox.html b/reference/kombu.pidbox.html
index b45500bc..91c2bb0b 100644
--- a/reference/kombu.pidbox.html
+++ b/reference/kombu.pidbox.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.pidbox &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.pidbox &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.exceptions" href="kombu.exceptions.html" />
<link rel="prev" title="kombu.compat" href="kombu.compat.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.compat.html" title="kombu.compat"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -348,7 +348,7 @@
<li class="right" >
<a href="kombu.compat.html" title="kombu.compat"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.pools.html b/reference/kombu.pools.html
index 6df3fbd9..8fb3eade 100644
--- a/reference/kombu.pools.html
+++ b/reference/kombu.pools.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>General Pools - kombu.pools &mdash; Kombu v1.3.1 documentation</title>
+ <title>General Pools - kombu.pools &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.compression" href="kombu.abstract.html" />
<link rel="prev" title="kombu.compression" href="kombu.compression.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.compression.html" title="kombu.compression"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -174,7 +174,7 @@ must have been declared.</li>
<dl class="function">
<dt id="kombu.pools.reset">
-<tt class="descclassname">kombu.pools.</tt><tt class="descname">reset</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.pools.reset" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">kombu.pools.</tt><tt class="descname">reset</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.reset" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</div>
@@ -230,7 +230,7 @@ must have been declared.</li>
<li class="right" >
<a href="kombu.compression.html" title="kombu.compression"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.serialization.html b/reference/kombu.serialization.html
index 113c0ff7..a32a0ef4 100644
--- a/reference/kombu.serialization.html
+++ b/reference/kombu.serialization.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.serialization &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.serialization &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.compression" href="kombu.compression.html" />
<link rel="prev" title="kombu.transport.virtual.scheduling" href="kombu.transport.virtual.scheduling.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.transport.virtual.scheduling.html" title="kombu.transport.virtual.scheduling"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -305,7 +305,7 @@ requested is not available.</p>
<li class="right" >
<a href="kombu.transport.virtual.scheduling.html" title="kombu.transport.virtual.scheduling"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.simple.html b/reference/kombu.simple.html
index 51167d6a..58a0c98a 100644
--- a/reference/kombu.simple.html
+++ b/reference/kombu.simple.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.simple &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.simple &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.messaging" href="kombu.messaging.html" />
<link rel="prev" title="kombu.connection" href="kombu.connection.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.connection.html" title="kombu.connection"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -311,7 +311,7 @@
<li class="right" >
<a href="kombu.connection.html" title="kombu.connection"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.syn.html b/reference/kombu.syn.html
index 8a39592c..6db14c9a 100644
--- a/reference/kombu.syn.html
+++ b/reference/kombu.syn.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Async Utilities - kombu.syn &mdash; Kombu v1.3.1 documentation</title>
+ <title>Async Utilities - kombu.syn &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Utilities - kombu.utils" href="kombu.utils.html" />
<link rel="prev" title="kombu.compression" href="kombu.abstract.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.abstract.html" title="kombu.compression"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -127,7 +127,7 @@ gevent or eventlet.</p>
<li class="right" >
<a href="kombu.abstract.html" title="kombu.compression"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.SQS.html b/reference/kombu.transport.SQS.html
index 40fb7703..7c096a1b 100644
--- a/reference/kombu.transport.SQS.html
+++ b/reference/kombu.transport.SQS.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.SQS &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.SQS &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,10 +21,10 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.base" href="kombu.transport.base.html" />
- <link rel="prev" title="&lt;no title&gt;" href="kombu.transport.pycouchdb.html" />
+ <link rel="prev" title="kombu.transport.pycouchdb" href="kombu.transport.pycouchdb.html" />
</head>
<body>
<div class="related">
@@ -40,9 +40,9 @@
<a href="kombu.transport.base.html" title="kombu.transport.base"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="kombu.transport.pycouchdb.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pycouchdb.html" title="kombu.transport.pycouchdb"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -403,7 +403,7 @@
<h4>Previous topic</h4>
<p class="topless"><a href="kombu.transport.pycouchdb.html"
- title="previous chapter">&lt;no title&gt;</a></p>
+ title="previous chapter">kombu.transport.pycouchdb</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="kombu.transport.base.html"
title="next chapter">kombu.transport.base</a></p>
@@ -442,9 +442,9 @@
<a href="kombu.transport.base.html" title="kombu.transport.base"
>next</a> |</li>
<li class="right" >
- <a href="kombu.transport.pycouchdb.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pycouchdb.html" title="kombu.transport.pycouchdb"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.base.html b/reference/kombu.transport.base.html
index d2c2f489..90c1a73b 100644
--- a/reference/kombu.transport.base.html
+++ b/reference/kombu.transport.base.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.base &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.base &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.virtual" href="kombu.transport.virtual.html" />
<link rel="prev" title="kombu.transport.SQS" href="kombu.transport.SQS.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.transport.SQS.html" title="kombu.transport.SQS"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -323,7 +323,7 @@ python structure sent by the publisher.</p>
<li class="right" >
<a href="kombu.transport.SQS.html" title="kombu.transport.SQS"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.beanstalk.html b/reference/kombu.transport.beanstalk.html
index 141e9434..d0406a1c 100644
--- a/reference/kombu.transport.beanstalk.html
+++ b/reference/kombu.transport.beanstalk.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.beanstalk &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.beanstalk &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.mongodb" href="kombu.transport.mongodb.html" />
<link rel="prev" title="kombu.transport.pyredis" href="kombu.transport.pyredis.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.transport.pyredis.html" title="kombu.transport.pyredis"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -178,7 +178,7 @@
<li class="right" >
<a href="kombu.transport.pyredis.html" title="kombu.transport.pyredis"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.html b/reference/kombu.transport.html
index a88b7e13..ef20a23d 100644
--- a/reference/kombu.transport.html
+++ b/reference/kombu.transport.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
- <link rel="next" title="&lt;no title&gt;" href="kombu.transport.pyamqplib.html" />
+ <link rel="next" title="kombu.transport.pyamqplib" href="kombu.transport.pyamqplib.html" />
<link rel="prev" title="kombu.exceptions" href="kombu.exceptions.html" />
</head>
<body>
@@ -37,12 +37,12 @@
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.transport.pyamqplib.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pyamqplib.html" title="kombu.transport.pyamqplib"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="kombu.exceptions.html" title="kombu.exceptions"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -134,7 +134,7 @@ the alias table will be consulted.</p>
title="previous chapter">kombu.exceptions</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="kombu.transport.pyamqplib.html"
- title="next chapter">&lt;no title&gt;</a></p>
+ title="next chapter">kombu.transport.pyamqplib</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/reference/kombu.transport.txt"
@@ -167,12 +167,12 @@ the alias table will be consulted.</p>
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.transport.pyamqplib.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pyamqplib.html" title="kombu.transport.pyamqplib"
>next</a> |</li>
<li class="right" >
<a href="kombu.exceptions.html" title="kombu.exceptions"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.librabbitmq.html b/reference/kombu.transport.librabbitmq.html
index db80b72a..c4c8754d 100644
--- a/reference/kombu.transport.librabbitmq.html
+++ b/reference/kombu.transport.librabbitmq.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.librabbitmq &mdash; Kombu v1.3.1 documentation</title>
+ <title>&lt;no title&gt; &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,10 +21,10 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
- <link rel="next" title="&lt;no title&gt;" href="kombu.transport.pypika.html" />
- <link rel="prev" title="&lt;no title&gt;" href="kombu.transport.pyamqplib.html" />
+ <link rel="next" title="kombu.transport.pypika" href="kombu.transport.pypika.html" />
+ <link rel="prev" title="kombu.transport.pyamqplib" href="kombu.transport.pyamqplib.html" />
</head>
<body>
<div class="related">
@@ -37,12 +37,12 @@
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.transport.pypika.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pypika.html" title="kombu.transport.pypika"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="kombu.transport.pyamqplib.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pyamqplib.html" title="kombu.transport.pyamqplib"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -52,429 +52,7 @@
<div class="bodywrapper">
<div class="body">
- <span class="target" id="module-kombu.transport.librabbitmq"></span><div class="section" id="kombu-transport-librabbitmq">
-<h1>kombu.transport.librabbitmq<a class="headerlink" href="#kombu-transport-librabbitmq" title="Permalink to this headline">¶</a></h1>
-<p>pylibrabbitmq transport.</p>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">copyright:</th><td class="field-body"><ol class="first loweralpha simple" start="3">
-<li>2010 - 2011 by Ask Solem.</li>
-</ol>
-</td>
-</tr>
-<tr class="field"><th class="field-name">license:</th><td class="field-body"><p class="first last">BSD, see LICENSE for more details.</p>
-</td>
-</tr>
-</tbody>
-</table>
-<div class="contents local topic" id="contents">
-<ul class="simple">
-<li><a class="reference internal" href="#transport" id="id1">Transport</a></li>
-<li><a class="reference internal" href="#connection" id="id2">Connection</a></li>
-<li><a class="reference internal" href="#channel" id="id3">Channel</a></li>
-<li><a class="reference internal" href="#message" id="id4">Message</a></li>
-</ul>
-</div>
-<div class="section" id="transport">
-<h2><a class="toc-backref" href="#id1">Transport</a><a class="headerlink" href="#transport" title="Permalink to this headline">¶</a></h2>
-<dl class="class">
-<dt id="kombu.transport.librabbitmq.Transport">
-<em class="property">class </em><tt class="descclassname">kombu.transport.librabbitmq.</tt><tt class="descname">Transport</tt><big>(</big><em>client</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="class">
-<dt id="kombu.transport.librabbitmq.Transport.Connection">
-<em class="property">class </em><tt class="descname">Connection</tt><big>(</big><em>host='localhost'</em>, <em>userid='guest'</em>, <em>password='guest'</em>, <em>virtual_host='/'</em>, <em>port=5672</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="class">
-<dt id="kombu.transport.librabbitmq.Transport.Connection.Channel">
-<em class="property">class </em><tt class="descname">Channel</tt><big>(</big><em>connection</em>, <em>channel_id</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="class">
-<dt id="kombu.transport.librabbitmq.Transport.Connection.Channel.Message">
-<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>message</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel.Message" title="Permalink to this definition">¶</a></dt>
-<dd><p>A message received by the broker.</p>
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Transport.Connection.Channel.Message.body">
-<tt class="descname">body</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel.Message.body" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message body.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Transport.Connection.Channel.Message.delivery_tag">
-<tt class="descname">delivery_tag</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel.Message.delivery_tag" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message delivery tag, uniquely identifying this message.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Transport.Connection.Channel.Message.channel">
-<tt class="descname">channel</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel.Message.channel" title="Permalink to this definition">¶</a></dt>
-<dd><p>The channel instance the message was received on.</p>
-</dd></dl>
-
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Transport.Connection.Channel.message_to_python">
-<tt class="descclassname">Transport.Connection.Channel.</tt><tt class="descname">message_to_python</tt><big>(</big><em>raw_message</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel.message_to_python" title="Permalink to this definition">¶</a></dt>
-<dd><p>Convert encoded message body back to a Python value.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Transport.Connection.Channel.prepare_message">
-<tt class="descclassname">Transport.Connection.Channel.</tt><tt class="descname">prepare_message</tt><big>(</big><em>body</em>, <em>priority=None</em>, <em>content_type=None</em>, <em>content_encoding=None</em>, <em>headers=None</em>, <em>properties=None</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel.prepare_message" title="Permalink to this definition">¶</a></dt>
-<dd><p>Encapsulate data into a AMQP message.</p>
-</dd></dl>
-
-</dd></dl>
-
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Transport.close_connection">
-<tt class="descclassname">Transport.</tt><tt class="descname">close_connection</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.close_connection" title="Permalink to this definition">¶</a></dt>
-<dd><p>Close the AMQP broker connection.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Transport.create_channel">
-<tt class="descclassname">Transport.</tt><tt class="descname">create_channel</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.create_channel" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Transport.default_connection_params">
-<tt class="descclassname">Transport.</tt><tt class="descname">default_connection_params</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.default_connection_params" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Transport.drain_events">
-<tt class="descclassname">Transport.</tt><tt class="descname">drain_events</tt><big>(</big><em>connection</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.drain_events" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Transport.establish_connection">
-<tt class="descclassname">Transport.</tt><tt class="descname">establish_connection</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.establish_connection" title="Permalink to this definition">¶</a></dt>
-<dd><p>Establish connection to the AMQP broker.</p>
-</dd></dl>
-
-</dd></dl>
-
-</div>
-<div class="section" id="connection">
-<h2><a class="toc-backref" href="#id2">Connection</a><a class="headerlink" href="#connection" title="Permalink to this headline">¶</a></h2>
-<dl class="class">
-<dt id="kombu.transport.librabbitmq.Connection">
-<em class="property">class </em><tt class="descclassname">kombu.transport.librabbitmq.</tt><tt class="descname">Connection</tt><big>(</big><em>host='localhost'</em>, <em>userid='guest'</em>, <em>password='guest'</em>, <em>virtual_host='/'</em>, <em>port=5672</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="class">
-<dt id="kombu.transport.librabbitmq.Connection.Channel">
-<em class="property">class </em><tt class="descname">Channel</tt><big>(</big><em>connection</em>, <em>channel_id</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Consumer">
-<tt class="descname">Consumer</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Consumer" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="class">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message">
-<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>message</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message" title="Permalink to this definition">¶</a></dt>
-<dd><p>A message received by the broker.</p>
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.body">
-<tt class="descname">body</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.body" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message body.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.delivery_tag">
-<tt class="descname">delivery_tag</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.delivery_tag" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message delivery tag, uniquely identifying this message.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.channel">
-<tt class="descname">channel</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.channel" title="Permalink to this definition">¶</a></dt>
-<dd><p>The channel instance the message was received on.</p>
-</dd></dl>
-
-<dl class="exception">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError">
-<em class="property">exception </em><tt class="descname">MessageStateError</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message has already been acknowledged.</p>
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError.args">
-<tt class="descname">args</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError.args" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError.message">
-<tt class="descname">message</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError.message" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.ack">
-<tt class="descclassname">Connection.Channel.Message.</tt><tt class="descname">ack</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.ack" title="Permalink to this definition">¶</a></dt>
-<dd><p>Acknowledge this message as being processed.,
-This will remove the message from the queue.</p>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name" colspan="2">Raises MessageStateError:</th></tr>
-<tr class="field"><td>&nbsp;</td><td class="field-body">If the message has already been
-acknowledged/requeued/rejected.</td>
-</tr>
-</tbody>
-</table>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.acknowledged">
-<tt class="descclassname">Connection.Channel.Message.</tt><tt class="descname">acknowledged</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.acknowledged" title="Permalink to this definition">¶</a></dt>
-<dd><p>Set to true if the message has been acknowledged.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.decode">
-<tt class="descclassname">Connection.Channel.Message.</tt><tt class="descname">decode</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.decode" title="Permalink to this definition">¶</a></dt>
-<dd><p>Deserialize the message body, returning the original
-python structure sent by the publisher.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.payload">
-<tt class="descclassname">Connection.Channel.Message.</tt><tt class="descname">payload</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.payload" title="Permalink to this definition">¶</a></dt>
-<dd><p>The decoded message body.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.reject">
-<tt class="descclassname">Connection.Channel.Message.</tt><tt class="descname">reject</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.reject" title="Permalink to this definition">¶</a></dt>
-<dd><p>Reject this message.</p>
-<p>The message will be discarded by the server.</p>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name" colspan="2">Raises MessageStateError:</th></tr>
-<tr class="field"><td>&nbsp;</td><td class="field-body">If the message has already been
-acknowledged/requeued/rejected.</td>
-</tr>
-</tbody>
-</table>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Message.requeue">
-<tt class="descclassname">Connection.Channel.Message.</tt><tt class="descname">requeue</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message.requeue" title="Permalink to this definition">¶</a></dt>
-<dd><p>Reject this message and put it back on the queue.</p>
-<p>You must not use this method as a means of selecting messages
-to process.</p>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name" colspan="2">Raises MessageStateError:</th></tr>
-<tr class="field"><td>&nbsp;</td><td class="field-body">If the message has already been
-acknowledged/requeued/rejected.</td>
-</tr>
-</tbody>
-</table>
-</dd></dl>
-
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.Producer">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">Producer</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Producer" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.after_reply_message_received">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">after_reply_message_received</tt><big>(</big><em>queue</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.after_reply_message_received" title="Permalink to this definition">¶</a></dt>
-<dd><p>reply queue semantics: can be used to delete the queue
-after transient reply message received.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.basic_ack">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">basic_ack</tt><big>(</big><em>delivery_tag</em>, <em>multiple=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.basic_ack" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.basic_cancel">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">basic_cancel</tt><big>(</big><em>consumer_tag</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.basic_cancel" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.basic_consume">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">basic_consume</tt><big>(</big><em>queue=''</em>, <em>consumer_tag=None</em>, <em>no_local=False</em>, <em>no_ack=False</em>, <em>exclusive=False</em>, <em>callback=None</em>, <em>nowait=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.basic_consume" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.basic_get">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">basic_get</tt><big>(</big><em>queue=''</em>, <em>noack=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.basic_get" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.basic_publish">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">basic_publish</tt><big>(</big><em>message</em>, <em>exchange=''</em>, <em>routing_key=''</em>, <em>mandatory=False</em>, <em>immediate=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.basic_publish" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.basic_qos">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">basic_qos</tt><big>(</big><em>prefetch_size=0</em>, <em>prefetch_count=0</em>, <em>_global=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.basic_qos" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.basic_reject">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">basic_reject</tt><big>(</big><em>delivery_tag</em>, <em>requeue=True</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.basic_reject" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.close">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.close" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.exchange_declare">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">exchange_declare</tt><big>(</big><em>exchange=''</em>, <em>type='direct'</em>, <em>passive=False</em>, <em>durable=False</em>, <em>auto_delete=False</em>, <em>arguments=None</em>, <em>nowait=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.exchange_declare" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.flow">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">flow</tt><big>(</big><em>enabled</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.flow" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.list_bindings">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">list_bindings</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.list_bindings" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.message_to_python">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">message_to_python</tt><big>(</big><em>raw_message</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.message_to_python" title="Permalink to this definition">¶</a></dt>
-<dd><p>Convert encoded message body back to a Python value.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.prepare_message">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">prepare_message</tt><big>(</big><em>body</em>, <em>priority=None</em>, <em>content_type=None</em>, <em>content_encoding=None</em>, <em>headers=None</em>, <em>properties=None</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.prepare_message" title="Permalink to this definition">¶</a></dt>
-<dd><p>Encapsulate data into a AMQP message.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.queue_bind">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">queue_bind</tt><big>(</big><em>queue=''</em>, <em>exchange=''</em>, <em>routing_key=''</em>, <em>arguments=None</em>, <em>nowait=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.queue_bind" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.queue_declare">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">queue_declare</tt><big>(</big><em>queue=''</em>, <em>passive=False</em>, <em>durable=False</em>, <em>exclusive=False</em>, <em>auto_delete=False</em>, <em>arguments=None</em>, <em>nowait=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.queue_declare" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.queue_purge">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">queue_purge</tt><big>(</big><em>queue</em>, <em>nowait=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.queue_purge" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.Channel.queue_unbind">
-<tt class="descclassname">Connection.Channel.</tt><tt class="descname">queue_unbind</tt><big>(</big><em>queue=''</em>, <em>exchange=''</em>, <em>binding_key=''</em>, <em>nowait=False</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.queue_unbind" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.channel">
-<tt class="descclassname">Connection.</tt><tt class="descname">channel</tt><big>(</big><em>channel_id=None</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.channel" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.close">
-<tt class="descclassname">Connection.</tt><tt class="descname">close</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.close" title="Permalink to this definition">¶</a></dt>
-<dd><p>Close connection.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Connection.drain_events">
-<tt class="descclassname">Connection.</tt><tt class="descname">drain_events</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.drain_events" title="Permalink to this definition">¶</a></dt>
-<dd></dd></dl>
-
-</dd></dl>
-
-</div>
-<div class="section" id="channel">
-<h2><a class="toc-backref" href="#id3">Channel</a><a class="headerlink" href="#channel" title="Permalink to this headline">¶</a></h2>
-<dl class="class">
-<dt id="kombu.transport.librabbitmq.Channel">
-<em class="property">class </em><tt class="descclassname">kombu.transport.librabbitmq.</tt><tt class="descname">Channel</tt><big>(</big><em>connection</em>, <em>channel_id</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Channel" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="class">
-<dt id="kombu.transport.librabbitmq.Channel.Message">
-<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>message</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Channel.Message" title="Permalink to this definition">¶</a></dt>
-<dd><p>A message received by the broker.</p>
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Channel.Message.body">
-<tt class="descname">body</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Channel.Message.body" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message body.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Channel.Message.delivery_tag">
-<tt class="descname">delivery_tag</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Channel.Message.delivery_tag" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message delivery tag, uniquely identifying this message.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Channel.Message.channel">
-<tt class="descname">channel</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Channel.Message.channel" title="Permalink to this definition">¶</a></dt>
-<dd><p>The channel instance the message was received on.</p>
-</dd></dl>
-
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Channel.message_to_python">
-<tt class="descclassname">Channel.</tt><tt class="descname">message_to_python</tt><big>(</big><em>raw_message</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Channel.message_to_python" title="Permalink to this definition">¶</a></dt>
-<dd><p>Convert encoded message body back to a Python value.</p>
-</dd></dl>
-
-<dl class="method">
-<dt id="kombu.transport.librabbitmq.Channel.prepare_message">
-<tt class="descclassname">Channel.</tt><tt class="descname">prepare_message</tt><big>(</big><em>body</em>, <em>priority=None</em>, <em>content_type=None</em>, <em>content_encoding=None</em>, <em>headers=None</em>, <em>properties=None</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Channel.prepare_message" title="Permalink to this definition">¶</a></dt>
-<dd><p>Encapsulate data into a AMQP message.</p>
-</dd></dl>
-
-</dd></dl>
-
-</div>
-<div class="section" id="message">
-<h2><a class="toc-backref" href="#id4">Message</a><a class="headerlink" href="#message" title="Permalink to this headline">¶</a></h2>
-<dl class="class">
-<dt id="kombu.transport.librabbitmq.Message">
-<em class="property">class </em><tt class="descclassname">kombu.transport.librabbitmq.</tt><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>message</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Message" title="Permalink to this definition">¶</a></dt>
-<dd><p>A message received by the broker.</p>
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Message.body">
-<tt class="descname">body</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Message.body" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message body.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Message.delivery_tag">
-<tt class="descname">delivery_tag</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Message.delivery_tag" title="Permalink to this definition">¶</a></dt>
-<dd><p>The message delivery tag, uniquely identifying this message.</p>
-</dd></dl>
-
-<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Message.channel">
-<tt class="descname">channel</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Message.channel" title="Permalink to this definition">¶</a></dt>
-<dd><p>The channel instance the message was received on.</p>
-</dd></dl>
-
-</dd></dl>
-
-</div>
-</div>
-
+
</div>
</div>
@@ -483,23 +61,12 @@ after transient reply message received.</p>
<div class="sphinxsidebarwrapper"><p class="logo"><a href="../index.html">
<img class="logo" width="128" height="128" src="http://cloud.github.com/downloads/ask/kombu/kombusmall.jpg" alt="Logo"/>
</a></p>
- <h3><a href="../index.html">Table Of Contents</a></h3>
- <ul>
-<li><a class="reference internal" href="#">kombu.transport.librabbitmq</a><ul>
-<li><a class="reference internal" href="#transport">Transport</a></li>
-<li><a class="reference internal" href="#connection">Connection</a></li>
-<li><a class="reference internal" href="#channel">Channel</a></li>
-<li><a class="reference internal" href="#message">Message</a></li>
-</ul>
-</li>
-</ul>
-
<h4>Previous topic</h4>
<p class="topless"><a href="kombu.transport.pyamqplib.html"
- title="previous chapter">&lt;no title&gt;</a></p>
+ title="previous chapter">kombu.transport.pyamqplib</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="kombu.transport.pypika.html"
- title="next chapter">&lt;no title&gt;</a></p>
+ title="next chapter">kombu.transport.pypika</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/reference/kombu.transport.librabbitmq.txt"
@@ -532,12 +99,12 @@ after transient reply message received.</p>
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.transport.pypika.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pypika.html" title="kombu.transport.pypika"
>next</a> |</li>
<li class="right" >
- <a href="kombu.transport.pyamqplib.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pyamqplib.html" title="kombu.transport.pyamqplib"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.memory.html b/reference/kombu.transport.memory.html
index 9006b287..a8050fee 100644
--- a/reference/kombu.transport.memory.html
+++ b/reference/kombu.transport.memory.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.memory &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.memory &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,10 +21,10 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.pyredis" href="kombu.transport.pyredis.html" />
- <link rel="prev" title="&lt;no title&gt;" href="kombu.transport.pypika.html" />
+ <link rel="prev" title="kombu.transport.pypika" href="kombu.transport.pypika.html" />
</head>
<body>
<div class="related">
@@ -40,9 +40,9 @@
<a href="kombu.transport.pyredis.html" title="kombu.transport.pyredis"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="kombu.transport.pypika.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pypika.html" title="kombu.transport.pypika"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -133,7 +133,7 @@
<h4>Previous topic</h4>
<p class="topless"><a href="kombu.transport.pypika.html"
- title="previous chapter">&lt;no title&gt;</a></p>
+ title="previous chapter">kombu.transport.pypika</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="kombu.transport.pyredis.html"
title="next chapter">kombu.transport.pyredis</a></p>
@@ -172,9 +172,9 @@
<a href="kombu.transport.pyredis.html" title="kombu.transport.pyredis"
>next</a> |</li>
<li class="right" >
- <a href="kombu.transport.pypika.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pypika.html" title="kombu.transport.pypika"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.mongodb.html b/reference/kombu.transport.mongodb.html
index 3992098a..1f9ac662 100644
--- a/reference/kombu.transport.mongodb.html
+++ b/reference/kombu.transport.mongodb.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.mongodb &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.mongodb &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
- <link rel="next" title="&lt;no title&gt;" href="kombu.transport.pycouchdb.html" />
+ <link rel="next" title="kombu.transport.pycouchdb" href="kombu.transport.pycouchdb.html" />
<link rel="prev" title="kombu.transport.beanstalk" href="kombu.transport.beanstalk.html" />
</head>
<body>
@@ -37,12 +37,12 @@
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.transport.pycouchdb.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pycouchdb.html" title="kombu.transport.pycouchdb"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="kombu.transport.beanstalk.html" title="kombu.transport.beanstalk"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -140,7 +140,7 @@
title="previous chapter">kombu.transport.beanstalk</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="kombu.transport.pycouchdb.html"
- title="next chapter">&lt;no title&gt;</a></p>
+ title="next chapter">kombu.transport.pycouchdb</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/reference/kombu.transport.mongodb.txt"
@@ -173,12 +173,12 @@
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.transport.pycouchdb.html" title="&lt;no title&gt;"
+ <a href="kombu.transport.pycouchdb.html" title="kombu.transport.pycouchdb"
>next</a> |</li>
<li class="right" >
<a href="kombu.transport.beanstalk.html" title="kombu.transport.beanstalk"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.pyamqplib.html b/reference/kombu.transport.pyamqplib.html
index 1caa8ab6..fae9c116 100644
--- a/reference/kombu.transport.pyamqplib.html
+++ b/reference/kombu.transport.pyamqplib.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>&lt;no title&gt; &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.pyamqplib &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
- <link rel="next" title="kombu.transport.librabbitmq" href="kombu.transport.librabbitmq.html" />
+ <link rel="next" title="&lt;no title&gt;" href="kombu.transport.librabbitmq.html" />
<link rel="prev" title="kombu.transport" href="kombu.transport.html" />
</head>
<body>
@@ -37,12 +37,12 @@
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.transport.librabbitmq.html" title="kombu.transport.librabbitmq"
+ <a href="kombu.transport.librabbitmq.html" title="&lt;no title&gt;"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="kombu.transport.html" title="kombu.transport"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -52,7 +52,279 @@
<div class="bodywrapper">
<div class="body">
-
+ <span class="target" id="module-kombu.transport.pyamqplib"></span><div class="section" id="kombu-transport-pyamqplib">
+<h1>kombu.transport.pyamqplib<a class="headerlink" href="#kombu-transport-pyamqplib" title="Permalink to this headline">¶</a></h1>
+<p>amqplib transport.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">copyright:</th><td class="field-body"><ol class="first loweralpha simple" start="3">
+<li>2009 - 2011 by Ask Solem.</li>
+</ol>
+</td>
+</tr>
+<tr class="field"><th class="field-name">license:</th><td class="field-body"><p class="first last">BSD, see LICENSE for more details.</p>
+</td>
+</tr>
+</tbody>
+</table>
+<div class="contents local topic" id="contents">
+<ul class="simple">
+<li><a class="reference internal" href="#transport" id="id1">Transport</a></li>
+<li><a class="reference internal" href="#connection" id="id2">Connection</a></li>
+<li><a class="reference internal" href="#channel" id="id3">Channel</a></li>
+<li><a class="reference internal" href="#message" id="id4">Message</a></li>
+</ul>
+</div>
+<div class="section" id="transport">
+<h2><a class="toc-backref" href="#id1">Transport</a><a class="headerlink" href="#transport" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pyamqplib.Transport">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pyamqplib.</tt><tt class="descname">Transport</tt><big>(</big><em>client</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="class">
+<dt id="kombu.transport.pyamqplib.Transport.Connection">
+<em class="property">class </em><tt class="descname">Connection</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.Connection" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.Connection.channel">
+<tt class="descname">channel</tt><big>(</big><em>channel_id=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.Connection.channel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.Connection.drain_events">
+<tt class="descname">drain_events</tt><big>(</big><em>allowed_methods=None</em>, <em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.Connection.drain_events" title="Permalink to this definition">¶</a></dt>
+<dd><p>Wait for an event on any channel.</p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.Connection.read_timeout">
+<tt class="descname">read_timeout</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.Connection.read_timeout" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.Connection.wait_multi">
+<tt class="descname">wait_multi</tt><big>(</big><em>channels</em>, <em>allowed_methods=None</em>, <em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.Connection.wait_multi" title="Permalink to this definition">¶</a></dt>
+<dd><p>Wait for an event on a channel.</p>
+</dd></dl>
+
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.close_connection">
+<tt class="descclassname">Transport.</tt><tt class="descname">close_connection</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.close_connection" title="Permalink to this definition">¶</a></dt>
+<dd><p>Close the AMQP broker connection.</p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.create_channel">
+<tt class="descclassname">Transport.</tt><tt class="descname">create_channel</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.create_channel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.pyamqplib.Transport.default_connection_params">
+<tt class="descclassname">Transport.</tt><tt class="descname">default_connection_params</tt><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.default_connection_params" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.drain_events">
+<tt class="descclassname">Transport.</tt><tt class="descname">drain_events</tt><big>(</big><em>connection</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.drain_events" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.establish_connection">
+<tt class="descclassname">Transport.</tt><tt class="descname">establish_connection</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.establish_connection" title="Permalink to this definition">¶</a></dt>
+<dd><p>Establish connection to the AMQP broker.</p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Transport.verify_connection">
+<tt class="descclassname">Transport.</tt><tt class="descname">verify_connection</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Transport.verify_connection" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+</div>
+<div class="section" id="connection">
+<h2><a class="toc-backref" href="#id2">Connection</a><a class="headerlink" href="#connection" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pyamqplib.Connection">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pyamqplib.</tt><tt class="descname">Connection</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Connection" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="method">
+<dt id="kombu.transport.pyamqplib.Connection.channel">
+<tt class="descname">channel</tt><big>(</big><em>channel_id=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Connection.channel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Connection.close">
+<tt class="descname">close</tt><big>(</big><em>reply_code=0</em>, <em>reply_text=''</em>, <em>method_sig=(0</em>, <em>0)</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Connection.close" title="Permalink to this definition">¶</a></dt>
+<dd><p>request a connection close</p>
+<p>This method indicates that the sender wants to close the
+connection. This may be due to internal conditions (e.g. a
+forced shut-down) or due to an error handling a specific
+method, i.e. an exception. When a close is due to an
+exception, the sender provides the class and method id of the
+method which caused the exception.</p>
+<p>RULE:</p>
+<blockquote>
+<div>After sending this method any received method except the
+Close-OK method MUST be discarded.</div></blockquote>
+<p>RULE:</p>
+<blockquote>
+<div>The peer sending this method MAY use a counter or timeout
+to detect failure of the other peer to respond correctly
+with the Close-OK method.</div></blockquote>
+<p>RULE:</p>
+<blockquote>
+<div>When a server receives the Close method from a client it
+MUST delete all server-side resources associated with the
+client&#8217;s context. A client CANNOT reconnect to a context
+after sending or receiving a Close method.</div></blockquote>
+<dl class="docutils">
+<dt>PARAMETERS:</dt>
+<dd><p class="first">reply_code: short</p>
+<blockquote>
+<div>The reply code. The AMQ reply codes are defined in AMQ
+RFC 011.</div></blockquote>
+<p>reply_text: shortstr</p>
+<blockquote>
+<div>The localised reply text. This text can be logged as an
+aid to resolving issues.</div></blockquote>
+<p>class_id: short</p>
+<blockquote>
+<div><p>failing method class</p>
+<p>When the close is provoked by a method exception, this
+is the class of the method.</p>
+</div></blockquote>
+<p>method_id: short</p>
+<blockquote class="last">
+<div><p>failing method ID</p>
+<p>When the close is provoked by a method exception, this
+is the ID of the method.</p>
+</div></blockquote>
+</dd>
+</dl>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Connection.dispatch_method">
+<tt class="descname">dispatch_method</tt><big>(</big><em>method_sig</em>, <em>args</em>, <em>content</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Connection.dispatch_method" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Connection.drain_events">
+<tt class="descname">drain_events</tt><big>(</big><em>allowed_methods=None</em>, <em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Connection.drain_events" title="Permalink to this definition">¶</a></dt>
+<dd><p>Wait for an event on any channel.</p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Connection.read_timeout">
+<tt class="descname">read_timeout</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Connection.read_timeout" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Connection.wait">
+<tt class="descname">wait</tt><big>(</big><em>allowed_methods=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Connection.wait" title="Permalink to this definition">¶</a></dt>
+<dd><p>Wait for a method that matches our allowed_methods parameter (the
+default value of None means match any method), and dispatch to it.</p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Connection.wait_multi">
+<tt class="descname">wait_multi</tt><big>(</big><em>channels</em>, <em>allowed_methods=None</em>, <em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Connection.wait_multi" title="Permalink to this definition">¶</a></dt>
+<dd><p>Wait for an event on a channel.</p>
+</dd></dl>
+
+</dd></dl>
+
+</div>
+<div class="section" id="channel">
+<h2><a class="toc-backref" href="#id3">Channel</a><a class="headerlink" href="#channel" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pyamqplib.Channel">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pyamqplib.</tt><tt class="descname">Channel</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Channel" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="class">
+<dt id="kombu.transport.pyamqplib.Channel.Message">
+<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>msg</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.Message" title="Permalink to this definition">¶</a></dt>
+<dd><p>A message received by the broker.</p>
+<dl class="attribute">
+<dt id="kombu.transport.pyamqplib.Channel.Message.body">
+<tt class="descname">body</tt><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.Message.body" title="Permalink to this definition">¶</a></dt>
+<dd><p>The message body.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.pyamqplib.Channel.Message.delivery_tag">
+<tt class="descname">delivery_tag</tt><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.Message.delivery_tag" title="Permalink to this definition">¶</a></dt>
+<dd><p>The message delivery tag, uniquely identifying this message.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.pyamqplib.Channel.Message.channel">
+<tt class="descname">channel</tt><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.Message.channel" title="Permalink to this definition">¶</a></dt>
+<dd><p>The channel instance the message was received on.</p>
+</dd></dl>
+
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Channel.basic_cancel">
+<tt class="descclassname">Channel.</tt><tt class="descname">basic_cancel</tt><big>(</big><em>consumer_tag</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.basic_cancel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Channel.basic_consume">
+<tt class="descclassname">Channel.</tt><tt class="descname">basic_consume</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.basic_consume" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Channel.close">
+<tt class="descclassname">Channel.</tt><tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.close" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Channel.message_to_python">
+<tt class="descclassname">Channel.</tt><tt class="descname">message_to_python</tt><big>(</big><em>raw_message</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.message_to_python" title="Permalink to this definition">¶</a></dt>
+<dd><p>Convert encoded message body back to a Python value.</p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pyamqplib.Channel.prepare_message">
+<tt class="descclassname">Channel.</tt><tt class="descname">prepare_message</tt><big>(</big><em>message_data</em>, <em>priority=None</em>, <em>content_type=None</em>, <em>content_encoding=None</em>, <em>headers=None</em>, <em>properties=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Channel.prepare_message" title="Permalink to this definition">¶</a></dt>
+<dd><p>Encapsulate data into a AMQP message.</p>
+</dd></dl>
+
+</dd></dl>
+
+</div>
+<div class="section" id="message">
+<h2><a class="toc-backref" href="#id4">Message</a><a class="headerlink" href="#message" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pyamqplib.Message">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pyamqplib.</tt><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>msg</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pyamqplib.Message" title="Permalink to this definition">¶</a></dt>
+<dd><p>A message received by the broker.</p>
+<dl class="attribute">
+<dt id="kombu.transport.pyamqplib.Message.body">
+<tt class="descname">body</tt><a class="headerlink" href="#kombu.transport.pyamqplib.Message.body" title="Permalink to this definition">¶</a></dt>
+<dd><p>The message body.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.pyamqplib.Message.delivery_tag">
+<tt class="descname">delivery_tag</tt><a class="headerlink" href="#kombu.transport.pyamqplib.Message.delivery_tag" title="Permalink to this definition">¶</a></dt>
+<dd><p>The message delivery tag, uniquely identifying this message.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.pyamqplib.Message.channel">
+<tt class="descname">channel</tt><a class="headerlink" href="#kombu.transport.pyamqplib.Message.channel" title="Permalink to this definition">¶</a></dt>
+<dd><p>The channel instance the message was received on.</p>
+</dd></dl>
+
+</dd></dl>
+
+</div>
+</div>
+
</div>
</div>
@@ -61,12 +333,23 @@
<div class="sphinxsidebarwrapper"><p class="logo"><a href="../index.html">
<img class="logo" width="128" height="128" src="http://cloud.github.com/downloads/ask/kombu/kombusmall.jpg" alt="Logo"/>
</a></p>
+ <h3><a href="../index.html">Table Of Contents</a></h3>
+ <ul>
+<li><a class="reference internal" href="#">kombu.transport.pyamqplib</a><ul>
+<li><a class="reference internal" href="#transport">Transport</a></li>
+<li><a class="reference internal" href="#connection">Connection</a></li>
+<li><a class="reference internal" href="#channel">Channel</a></li>
+<li><a class="reference internal" href="#message">Message</a></li>
+</ul>
+</li>
+</ul>
+
<h4>Previous topic</h4>
<p class="topless"><a href="kombu.transport.html"
title="previous chapter">kombu.transport</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="kombu.transport.librabbitmq.html"
- title="next chapter">kombu.transport.librabbitmq</a></p>
+ title="next chapter">&lt;no title&gt;</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/reference/kombu.transport.pyamqplib.txt"
@@ -99,12 +382,12 @@
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
- <a href="kombu.transport.librabbitmq.html" title="kombu.transport.librabbitmq"
+ <a href="kombu.transport.librabbitmq.html" title="&lt;no title&gt;"
>next</a> |</li>
<li class="right" >
<a href="kombu.transport.html" title="kombu.transport"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.pycouchdb.html b/reference/kombu.transport.pycouchdb.html
index 1de02985..f9077e38 100644
--- a/reference/kombu.transport.pycouchdb.html
+++ b/reference/kombu.transport.pycouchdb.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>&lt;no title&gt; &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.pycouchdb &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.SQS" href="kombu.transport.SQS.html" />
<link rel="prev" title="kombu.transport.mongodb" href="kombu.transport.mongodb.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.transport.mongodb.html" title="kombu.transport.mongodb"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -52,7 +52,71 @@
<div class="bodywrapper">
<div class="body">
-
+ <span class="target" id="module-kombu.transport.pycouchdb"></span><div class="section" id="kombu-transport-pycouchdb">
+<h1>kombu.transport.pycouchdb<a class="headerlink" href="#kombu-transport-pycouchdb" title="Permalink to this headline">¶</a></h1>
+<p>CouchDB transport.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">copyright:</th><td class="field-body"><ol class="first loweralpha simple" start="3">
+<li>2010 - 2011 by David Clymer.</li>
+</ol>
+</td>
+</tr>
+<tr class="field"><th class="field-name">license:</th><td class="field-body"><p class="first last">BSD, see LICENSE for more details.</p>
+</td>
+</tr>
+</tbody>
+</table>
+<div class="contents local topic" id="contents">
+<ul class="simple">
+<li><a class="reference internal" href="#transport" id="id1">Transport</a></li>
+<li><a class="reference internal" href="#channel" id="id2">Channel</a></li>
+<li><a class="reference internal" href="#functions" id="id3">Functions</a></li>
+</ul>
+</div>
+<div class="section" id="transport">
+<h2><a class="toc-backref" href="#id1">Transport</a><a class="headerlink" href="#transport" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pycouchdb.Transport">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pycouchdb.</tt><tt class="descname">Transport</tt><big>(</big><em>client</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pycouchdb.Transport" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="class">
+<dt id="kombu.transport.pycouchdb.Transport.Channel">
+<em class="property">class </em><tt class="descname">Channel</tt><big>(</big><em>connection</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pycouchdb.Transport.Channel" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="attribute">
+<dt id="kombu.transport.pycouchdb.Transport.Channel.client">
+<tt class="descname">client</tt><a class="headerlink" href="#kombu.transport.pycouchdb.Transport.Channel.client" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+</dd></dl>
+
+</div>
+<div class="section" id="channel">
+<h2><a class="toc-backref" href="#id2">Channel</a><a class="headerlink" href="#channel" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pycouchdb.Channel">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pycouchdb.</tt><tt class="descname">Channel</tt><big>(</big><em>connection</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pycouchdb.Channel" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="attribute">
+<dt id="kombu.transport.pycouchdb.Channel.client">
+<tt class="descname">client</tt><a class="headerlink" href="#kombu.transport.pycouchdb.Channel.client" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+</div>
+<div class="section" id="functions">
+<h2><a class="toc-backref" href="#id3">Functions</a><a class="headerlink" href="#functions" title="Permalink to this headline">¶</a></h2>
+<dl class="function">
+<dt id="kombu.transport.pycouchdb.create_message_view">
+<tt class="descclassname">kombu.transport.pycouchdb.</tt><tt class="descname">create_message_view</tt><big>(</big><em>db</em><big>)</big><a class="headerlink" href="#kombu.transport.pycouchdb.create_message_view" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</div>
+</div>
+
</div>
</div>
@@ -61,6 +125,16 @@
<div class="sphinxsidebarwrapper"><p class="logo"><a href="../index.html">
<img class="logo" width="128" height="128" src="http://cloud.github.com/downloads/ask/kombu/kombusmall.jpg" alt="Logo"/>
</a></p>
+ <h3><a href="../index.html">Table Of Contents</a></h3>
+ <ul>
+<li><a class="reference internal" href="#">kombu.transport.pycouchdb</a><ul>
+<li><a class="reference internal" href="#transport">Transport</a></li>
+<li><a class="reference internal" href="#channel">Channel</a></li>
+<li><a class="reference internal" href="#functions">Functions</a></li>
+</ul>
+</li>
+</ul>
+
<h4>Previous topic</h4>
<p class="topless"><a href="kombu.transport.mongodb.html"
title="previous chapter">kombu.transport.mongodb</a></p>
@@ -104,7 +178,7 @@
<li class="right" >
<a href="kombu.transport.mongodb.html" title="kombu.transport.mongodb"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.pypika.html b/reference/kombu.transport.pypika.html
index 4e650363..9ea66c86 100644
--- a/reference/kombu.transport.pypika.html
+++ b/reference/kombu.transport.pypika.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>&lt;no title&gt; &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.pypika &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,10 +21,10 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.memory" href="kombu.transport.memory.html" />
- <link rel="prev" title="kombu.transport.librabbitmq" href="kombu.transport.librabbitmq.html" />
+ <link rel="prev" title="&lt;no title&gt;" href="kombu.transport.librabbitmq.html" />
</head>
<body>
<div class="related">
@@ -40,9 +40,9 @@
<a href="kombu.transport.memory.html" title="kombu.transport.memory"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="kombu.transport.librabbitmq.html" title="kombu.transport.librabbitmq"
+ <a href="kombu.transport.librabbitmq.html" title="&lt;no title&gt;"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -52,7 +52,216 @@
<div class="bodywrapper">
<div class="body">
-
+ <span class="target" id="module-kombu.transport.pypika"></span><div class="section" id="kombu-transport-pypika">
+<h1>kombu.transport.pypika<a class="headerlink" href="#kombu-transport-pypika" title="Permalink to this headline">¶</a></h1>
+<p>Pika transport.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">copyright:</th><td class="field-body"><ol class="first loweralpha simple" start="3">
+<li>2009 - 2011 by Ask Solem.</li>
+</ol>
+</td>
+</tr>
+<tr class="field"><th class="field-name">license:</th><td class="field-body"><p class="first last">BSD, see LICENSE for more details.</p>
+</td>
+</tr>
+</tbody>
+</table>
+<div class="contents local topic" id="contents">
+<ul class="simple">
+<li><a class="reference internal" href="#transports" id="id1">Transports</a></li>
+<li><a class="reference internal" href="#connections" id="id2">Connections</a></li>
+<li><a class="reference internal" href="#channel" id="id3">Channel</a></li>
+<li><a class="reference internal" href="#message" id="id4">Message</a></li>
+</ul>
+</div>
+<div class="section" id="transports">
+<h2><a class="toc-backref" href="#id1">Transports</a><a class="headerlink" href="#transports" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pypika.AsyncoreTransport">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pypika.</tt><tt class="descname">AsyncoreTransport</tt><big>(</big><em>client</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.AsyncoreTransport" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="attribute">
+<dt id="kombu.transport.pypika.AsyncoreTransport.Connection">
+<tt class="descname">Connection</tt><a class="headerlink" href="#kombu.transport.pypika.AsyncoreTransport.Connection" title="Permalink to this definition">¶</a></dt>
+<dd><p>alias of <a class="reference internal" href="#kombu.transport.pypika.AsyncoreConnection" title="kombu.transport.pypika.AsyncoreConnection"><tt class="xref py py-class docutils literal"><span class="pre">AsyncoreConnection</span></tt></a></p>
+</dd></dl>
+
+</dd></dl>
+
+<dl class="class">
+<dt id="kombu.transport.pypika.SyncTransport">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pypika.</tt><tt class="descname">SyncTransport</tt><big>(</big><em>client</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.SyncTransport" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="attribute">
+<dt id="kombu.transport.pypika.SyncTransport.Connection">
+<tt class="descname">Connection</tt><a class="headerlink" href="#kombu.transport.pypika.SyncTransport.Connection" title="Permalink to this definition">¶</a></dt>
+<dd><p>alias of <a class="reference internal" href="#kombu.transport.pypika.BlockingConnection" title="kombu.transport.pypika.BlockingConnection"><tt class="xref py py-class docutils literal"><span class="pre">BlockingConnection</span></tt></a></p>
+</dd></dl>
+
+<dl class="class">
+<dt id="kombu.transport.pypika.SyncTransport.Message">
+<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>amqp_message</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.SyncTransport.Message" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.SyncTransport.close_connection">
+<tt class="descclassname">SyncTransport.</tt><tt class="descname">close_connection</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.SyncTransport.close_connection" title="Permalink to this definition">¶</a></dt>
+<dd><p>Close the AMQP broker connection.</p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.SyncTransport.create_channel">
+<tt class="descclassname">SyncTransport.</tt><tt class="descname">create_channel</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.SyncTransport.create_channel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.pypika.SyncTransport.default_connection_params">
+<tt class="descclassname">SyncTransport.</tt><tt class="descname">default_connection_params</tt><a class="headerlink" href="#kombu.transport.pypika.SyncTransport.default_connection_params" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.SyncTransport.drain_events">
+<tt class="descclassname">SyncTransport.</tt><tt class="descname">drain_events</tt><big>(</big><em>connection</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.SyncTransport.drain_events" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.SyncTransport.establish_connection">
+<tt class="descclassname">SyncTransport.</tt><tt class="descname">establish_connection</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.pypika.SyncTransport.establish_connection" title="Permalink to this definition">¶</a></dt>
+<dd><p>Establish connection to the AMQP broker.</p>
+</dd></dl>
+
+</dd></dl>
+
+</div>
+<div class="section" id="connections">
+<h2><a class="toc-backref" href="#id2">Connections</a><a class="headerlink" href="#connections" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pypika.AsyncoreConnection">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pypika.</tt><tt class="descname">AsyncoreConnection</tt><big>(</big><em>client</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.AsyncoreConnection" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="attribute">
+<dt id="kombu.transport.pypika.AsyncoreConnection.Super">
+<tt class="descname">Super</tt><a class="headerlink" href="#kombu.transport.pypika.AsyncoreConnection.Super" title="Permalink to this definition">¶</a></dt>
+<dd><p>alias of <a class="reference internal" href="#kombu.transport.pypika.AsyncoreConnection" title="kombu.transport.pypika.AsyncoreConnection"><tt class="xref py py-class docutils literal"><span class="pre">AsyncoreConnection</span></tt></a></p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.AsyncoreConnection.channel">
+<tt class="descname">channel</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.pypika.AsyncoreConnection.channel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.AsyncoreConnection.close">
+<tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.pypika.AsyncoreConnection.close" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.AsyncoreConnection.ensure_drain_events">
+<tt class="descname">ensure_drain_events</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.AsyncoreConnection.ensure_drain_events" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.AsyncoreConnection.on_data_available">
+<tt class="descname">on_data_available</tt><big>(</big><em>buf</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.AsyncoreConnection.on_data_available" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+<dl class="class">
+<dt id="kombu.transport.pypika.BlockingConnection">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pypika.</tt><tt class="descname">BlockingConnection</tt><big>(</big><em>client</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.BlockingConnection" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="attribute">
+<dt id="kombu.transport.pypika.BlockingConnection.Super">
+<tt class="descname">Super</tt><a class="headerlink" href="#kombu.transport.pypika.BlockingConnection.Super" title="Permalink to this definition">¶</a></dt>
+<dd><p>alias of <a class="reference internal" href="#kombu.transport.pypika.BlockingConnection" title="kombu.transport.pypika.BlockingConnection"><tt class="xref py py-class docutils literal"><span class="pre">BlockingConnection</span></tt></a></p>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.BlockingConnection.channel">
+<tt class="descname">channel</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.pypika.BlockingConnection.channel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.BlockingConnection.close">
+<tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.pypika.BlockingConnection.close" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.BlockingConnection.ensure_drain_events">
+<tt class="descname">ensure_drain_events</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.BlockingConnection.ensure_drain_events" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+</div>
+<div class="section" id="channel">
+<h2><a class="toc-backref" href="#id3">Channel</a><a class="headerlink" href="#channel" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pypika.Channel">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pypika.</tt><tt class="descname">Channel</tt><big>(</big><em>handler</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="class">
+<dt id="kombu.transport.pypika.Channel.Message">
+<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>amqp_message</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.Message" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.Channel.basic_ack">
+<tt class="descclassname">Channel.</tt><tt class="descname">basic_ack</tt><big>(</big><em>delivery_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.basic_ack" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.Channel.basic_consume">
+<tt class="descclassname">Channel.</tt><tt class="descname">basic_consume</tt><big>(</big><em>queue</em>, <em>no_ack=False</em>, <em>consumer_tag=None</em>, <em>callback=None</em>, <em>nowait=False</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.basic_consume" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.Channel.basic_get">
+<tt class="descclassname">Channel.</tt><tt class="descname">basic_get</tt><big>(</big><em>queue</em>, <em>no_ack</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.basic_get" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.Channel.basic_publish">
+<tt class="descclassname">Channel.</tt><tt class="descname">basic_publish</tt><big>(</big><em>message</em>, <em>exchange</em>, <em>routing_key</em>, <em>mandatory=False</em>, <em>immediate=False</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.basic_publish" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.pypika.Channel.channel_id">
+<tt class="descclassname">Channel.</tt><tt class="descname">channel_id</tt><a class="headerlink" href="#kombu.transport.pypika.Channel.channel_id" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.Channel.close">
+<tt class="descclassname">Channel.</tt><tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.close" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.Channel.message_to_python">
+<tt class="descclassname">Channel.</tt><tt class="descname">message_to_python</tt><big>(</big><em>raw_message</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.message_to_python" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.Channel.prepare_message">
+<tt class="descclassname">Channel.</tt><tt class="descname">prepare_message</tt><big>(</big><em>message_data</em>, <em>priority=None</em>, <em>content_type=None</em>, <em>content_encoding=None</em>, <em>headers=None</em>, <em>properties=None</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.prepare_message" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.pypika.Channel.queue_purge">
+<tt class="descclassname">Channel.</tt><tt class="descname">queue_purge</tt><big>(</big><em>queue=None</em>, <em>nowait=False</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Channel.queue_purge" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+</div>
+<div class="section" id="message">
+<h2><a class="toc-backref" href="#id4">Message</a><a class="headerlink" href="#message" title="Permalink to this headline">¶</a></h2>
+<dl class="class">
+<dt id="kombu.transport.pypika.Message">
+<em class="property">class </em><tt class="descclassname">kombu.transport.pypika.</tt><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>amqp_message</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.pypika.Message" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</div>
+</div>
+
</div>
</div>
@@ -61,9 +270,20 @@
<div class="sphinxsidebarwrapper"><p class="logo"><a href="../index.html">
<img class="logo" width="128" height="128" src="http://cloud.github.com/downloads/ask/kombu/kombusmall.jpg" alt="Logo"/>
</a></p>
+ <h3><a href="../index.html">Table Of Contents</a></h3>
+ <ul>
+<li><a class="reference internal" href="#">kombu.transport.pypika</a><ul>
+<li><a class="reference internal" href="#transports">Transports</a></li>
+<li><a class="reference internal" href="#connections">Connections</a></li>
+<li><a class="reference internal" href="#channel">Channel</a></li>
+<li><a class="reference internal" href="#message">Message</a></li>
+</ul>
+</li>
+</ul>
+
<h4>Previous topic</h4>
<p class="topless"><a href="kombu.transport.librabbitmq.html"
- title="previous chapter">kombu.transport.librabbitmq</a></p>
+ title="previous chapter">&lt;no title&gt;</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="kombu.transport.memory.html"
title="next chapter">kombu.transport.memory</a></p>
@@ -102,9 +322,9 @@
<a href="kombu.transport.memory.html" title="kombu.transport.memory"
>next</a> |</li>
<li class="right" >
- <a href="kombu.transport.librabbitmq.html" title="kombu.transport.librabbitmq"
+ <a href="kombu.transport.librabbitmq.html" title="&lt;no title&gt;"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.pyredis.html b/reference/kombu.transport.pyredis.html
index d862e489..b0a3a8cc 100644
--- a/reference/kombu.transport.pyredis.html
+++ b/reference/kombu.transport.pyredis.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.pyredis &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.pyredis &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.beanstalk" href="kombu.transport.beanstalk.html" />
<link rel="prev" title="kombu.transport.memory" href="kombu.transport.memory.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.transport.memory.html" title="kombu.transport.memory"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -228,7 +228,7 @@
<li class="right" >
<a href="kombu.transport.memory.html" title="kombu.transport.memory"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.virtual.exchange.html b/reference/kombu.transport.virtual.exchange.html
index 2c409eff..83df06a0 100644
--- a/reference/kombu.transport.virtual.exchange.html
+++ b/reference/kombu.transport.virtual.exchange.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.virtual.exchange &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.virtual.exchange &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.virtual.scheduling" href="kombu.transport.virtual.scheduling.html" />
<link rel="prev" title="kombu.transport.virtual" href="kombu.transport.virtual.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.transport.virtual.html" title="kombu.transport.virtual"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -268,7 +268,7 @@ for bindings to this exchange.</p>
<li class="right" >
<a href="kombu.transport.virtual.html" title="kombu.transport.virtual"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.virtual.html b/reference/kombu.transport.virtual.html
index e7196fa4..89129a22 100644
--- a/reference/kombu.transport.virtual.html
+++ b/reference/kombu.transport.virtual.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.virtual &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.virtual &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.virtual.exchange" href="kombu.transport.virtual.exchange.html" />
<link rel="prev" title="kombu.transport.base" href="kombu.transport.base.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.transport.base.html" title="kombu.transport.base"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -610,7 +610,7 @@ prefetch limits.</p>
<li class="right" >
<a href="kombu.transport.base.html" title="kombu.transport.base"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.transport.virtual.scheduling.html b/reference/kombu.transport.virtual.scheduling.html
index c86e86ae..1cd48cc0 100644
--- a/reference/kombu.transport.virtual.scheduling.html
+++ b/reference/kombu.transport.virtual.scheduling.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.virtual.scheduling &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.transport.virtual.scheduling &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.serialization" href="kombu.serialization.html" />
<link rel="prev" title="kombu.transport.virtual.exchange" href="kombu.transport.virtual.exchange.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.transport.virtual.exchange.html" title="kombu.transport.virtual.exchange"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -144,7 +144,7 @@ an equal chance to be consumed from.</p>
<li class="right" >
<a href="kombu.transport.virtual.exchange.html" title="kombu.transport.virtual.exchange"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.utils.compat.html b/reference/kombu.utils.compat.html
index 1d1c23c3..0f5744da 100644
--- a/reference/kombu.utils.compat.html
+++ b/reference/kombu.utils.compat.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Compat. utilities - kombu.utils.compat &mdash; Kombu v1.3.1 documentation</title>
+ <title>Compat. utilities - kombu.utils.compat &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Debugging - kombu.utils.debug" href="kombu.utils.debug.html" />
<link rel="prev" title="Utilities - kombu.utils" href="kombu.utils.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.utils.html" title="Utilities - kombu.utils"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -104,7 +104,7 @@ and values equal to v (which defaults to None).</p>
<dl class="method">
<dt id="kombu.utils.compat.CompatOrderedDict.pop">
-<tt class="descname">pop</tt><big>(</big><em>key</em>, <em>default=&lt;object object at 0x102659ee0&gt;</em><big>)</big><a class="headerlink" href="#kombu.utils.compat.CompatOrderedDict.pop" title="Permalink to this definition">¶</a></dt>
+<tt class="descname">pop</tt><big>(</big><em>key</em>, <em>default=&lt;object object at 0x10252e590&gt;</em><big>)</big><a class="headerlink" href="#kombu.utils.compat.CompatOrderedDict.pop" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
@@ -191,7 +191,7 @@ order if false.</p>
<li class="right" >
<a href="kombu.utils.html" title="Utilities - kombu.utils"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.utils.debug.html b/reference/kombu.utils.debug.html
index df0e55ff..116d4085 100644
--- a/reference/kombu.utils.debug.html
+++ b/reference/kombu.utils.debug.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Debugging - kombu.utils.debug &mdash; Kombu v1.3.1 documentation</title>
+ <title>Debugging - kombu.utils.debug &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="String Encoding - kombu.utils.encoding" href="kombu.utils.encoding.html" />
<link rel="prev" title="Compat. utilities - kombu.utils.compat" href="kombu.utils.compat.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.utils.compat.html" title="Compat. utilities - kombu.utils.compat"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -117,7 +117,7 @@
<li class="right" >
<a href="kombu.utils.compat.html" title="Compat. utilities - kombu.utils.compat"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.utils.encoding.html b/reference/kombu.utils.encoding.html
index a7542bbd..fcec7013 100644
--- a/reference/kombu.utils.encoding.html
+++ b/reference/kombu.utils.encoding.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>String Encoding - kombu.utils.encoding &mdash; Kombu v1.3.1 documentation</title>
+ <title>String Encoding - kombu.utils.encoding &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.utils.functional" href="kombu.utils.functional.html" />
<link rel="prev" title="Debugging - kombu.utils.debug" href="kombu.utils.debug.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.utils.debug.html" title="Debugging - kombu.utils.debug"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -122,7 +122,7 @@
<li class="right" >
<a href="kombu.utils.debug.html" title="Debugging - kombu.utils.debug"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.utils.finalize.html b/reference/kombu.utils.finalize.html
index fb234516..4836a7c3 100644
--- a/reference/kombu.utils.finalize.html
+++ b/reference/kombu.utils.finalize.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Finalize - kombu.utils.finalize &mdash; Kombu v1.3.1 documentation</title>
+ <title>Finalize - kombu.utils.finalize &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Logging - kombu.utils.log" href="kombu.utils.log.html" />
<link rel="prev" title="kombu.utils.functional" href="kombu.utils.functional.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.utils.functional.html" title="kombu.utils.functional"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -125,7 +125,7 @@
<li class="right" >
<a href="kombu.utils.functional.html" title="kombu.utils.functional"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.utils.functional.html b/reference/kombu.utils.functional.html
index 0b12ba93..330e7ed1 100644
--- a/reference/kombu.utils.functional.html
+++ b/reference/kombu.utils.functional.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.utils.functional &mdash; Kombu v1.3.1 documentation</title>
+ <title>kombu.utils.functional &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Finalize - kombu.utils.finalize" href="kombu.utils.finalize.html" />
<link rel="prev" title="String Encoding - kombu.utils.encoding" href="kombu.utils.encoding.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.utils.encoding.html" title="String Encoding - kombu.utils.encoding"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -108,7 +108,7 @@
<li class="right" >
<a href="kombu.utils.encoding.html" title="String Encoding - kombu.utils.encoding"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.utils.html b/reference/kombu.utils.html
index d84d0424..30f2870e 100644
--- a/reference/kombu.utils.html
+++ b/reference/kombu.utils.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Utilities - kombu.utils &mdash; Kombu v1.3.1 documentation</title>
+ <title>Utilities - kombu.utils &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Compat. utilities - kombu.utils.compat" href="kombu.utils.compat.html" />
<link rel="prev" title="Async Utilities - kombu.syn" href="kombu.syn.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.syn.html" title="Async Utilities - kombu.syn"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -175,14 +175,6 @@ retry.</li>
<dd></dd></dl>
<dl class="function">
-<dt id="kombu.utils.uuid">
-<tt class="descclassname">kombu.utils.</tt><tt class="descname">uuid</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.utils.uuid" title="Permalink to this definition">¶</a></dt>
-<dd><p>Generate a unique id, having - hopefully - a very small chance of
-collission.</p>
-<p>For now this is provided by <tt class="xref py py-func docutils literal"><span class="pre">uuid.uuid4()</span></tt>.</p>
-</dd></dl>
-
-<dl class="function">
<dt id="kombu.utils.uuid4">
<tt class="descclassname">kombu.utils.</tt><tt class="descname">uuid4</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.utils.uuid4" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
@@ -240,7 +232,7 @@ collission.</p>
<li class="right" >
<a href="kombu.syn.html" title="Async Utilities - kombu.syn"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/reference/kombu.utils.log.html b/reference/kombu.utils.log.html
index a50d5b22..957ab0eb 100644
--- a/reference/kombu.utils.log.html
+++ b/reference/kombu.utils.log.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Logging - kombu.utils.log &mdash; Kombu v1.3.1 documentation</title>
+ <title>Logging - kombu.utils.log &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Change history" href="../changelog.html" />
<link rel="prev" title="Finalize - kombu.utils.finalize" href="kombu.utils.finalize.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="kombu.utils.finalize.html" title="Finalize - kombu.utils.finalize"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -122,7 +122,7 @@
<li class="right" >
<a href="kombu.utils.finalize.html" title="Finalize - kombu.utils.finalize"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
diff --git a/search.html b/search.html
index e7ece847..e9f47aae 100644
--- a/search.html
+++ b/search.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Search &mdash; Kombu v1.3.1 documentation</title>
+ <title>Search &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -22,7 +22,7 @@
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/searchtools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="index.html" />
<script type="text/javascript">
jQuery(function() { Search.loadIndex("searchindex.js"); });
</script>
@@ -39,7 +39,7 @@
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -92,7 +92,7 @@
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/searchindex.js b/searchindex.js
index b19e603d..0dd9892e 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({objects:{"kombu.transport.SQS.Channel":{transport_options:[6,2,1],conninfo:[6,2,1],exchange_delete:[6,1,1],basic_ack:[6,1,1],close:[6,1,1],sqs:[6,2,1],supports_fanout:[6,2,1],region:[6,2,1],entity_name:[6,1,1],basic_cancel:[6,1,1],basic_consume:[6,1,1],sdb:[6,2,1],table:[6,2,1],get_table:[6,1,1],Table:[6,5,1],get_exchanges:[6,1,1],visibility_timeout:[6,2,1]},"kombu.transport.beanstalk.Transport":{Channel:[36,5,1]},"kombu.connection.ChannelPool":{release:[43,1,1],acquire:[43,1,1],LimitExceeded:[43,2,1]},"kombu.transport.virtual.scheduling.FairCycle":{close:[38,1,1],get:[38,1,1]},"kombu.transport.librabbitmq.Transport.Connection.Channel":{Message:[41,5,1],message_to_python:[41,1,1],prepare_message:[41,1,1]},"kombu.transport.SQS.Transport.Channel":{transport_options:[6,2,1],conninfo:[6,2,1],Table:[6,5,1],exchange_delete:[6,1,1],basic_ack:[6,1,1],entity_name:[6,1,1],sqs:[6,2,1],supports_fanout:[6,2,1],region:[6,2,1],basic_cancel:[6,1,1],basic_consume:[6,1,1],sdb:[6,2,1],close:[6,1,1],get_table:[6,1,1],table:[6,2,1],get_exchanges:[6,1,1],visibility_timeout:[6,2,1]},"kombu.simple.SimpleBuffer":{queue_opts:[40,2,1],qsize:[40,1,1],producer:[40,2,1],get:[40,1,1],clear:[40,1,1],get_nowait:[40,1,1],queue:[40,2,1],exchange_opts:[40,2,1],channel:[40,2,1],put:[40,1,1],close:[40,1,1],consumer:[40,2,1],no_ack:[40,2,1],"__len__":[40,1,1]},"kombu.transport.virtual.Channel":{do_restore:[2,2,1],qos:[2,2,1],basic_ack:[2,1,1],basic_reject:[2,1,1],basic_get:[2,1,1],close:[2,1,1],basic_recover:[2,1,1],exchange_declare:[2,1,1],exchange_delete:[2,1,1],queue_bind:[2,1,1],drain_events:[2,1,1],state:[2,2,1],basic_publish:[2,1,1],basic_consume:[2,1,1],queue_delete:[2,1,1],queue_declare:[2,1,1],queue_purge:[2,1,1],basic_qos:[2,1,1],basic_cancel:[2,1,1],message_to_python:[2,1,1],get_table:[2,1,1],exchange_types:[2,2,1],flow:[2,1,1],"typeof":[2,1,1],Message:[2,2,1],prepare_message:[2,1,1]},"kombu.transport.virtual.scheduling":{FairCycle:[38,5,1]},"kombu.pidbox.Mailbox":{Node:[33,1,1],abcast:[33,1,1],get_reply_queue:[33,1,1],exchange:[33,2,1],multi_call:[33,1,1],namespace:[33,2,1],cast:[33,1,1],connection:[33,2,1],call:[33,1,1],get_queue:[33,1,1],reply_exchange:[33,2,1],type:[33,2,1]},"kombu.simple.SimpleQueue":{queue_opts:[40,2,1],qsize:[40,1,1],producer:[40,2,1],get:[40,1,1],clear:[40,1,1],get_nowait:[40,1,1],queue:[40,2,1],exchange_opts:[40,2,1],channel:[40,2,1],put:[40,1,1],close:[40,1,1],consumer:[40,2,1],no_ack:[40,2,1],"__len__":[40,1,1]},"kombu.transport.virtual.exchange.DirectExchange":{lookup:[35,1,1],deliver:[35,1,1]},"kombu.transport.librabbitmq.Connection":{close:[41,2,1],drain_events:[41,1,1],Channel:[41,5,1],channel:[41,1,1]},"kombu.transport.virtual.Message.MessageStateError":{message:[2,2,1],args:[2,2,1]},"kombu.transport.SQS.Transport":{Channel:[6,5,1]},"kombu.transport":{SQS:[6,0,1],mongodb:[5,0,1],resolve_transport:[8,4,1],pyredis:[31,0,1],virtual:[2,0,1],TRANSPORT_ALIASES:[8,3,1],DEFAULT_TRANSPORT:[8,3,1],librabbitmq:[41,0,1],beanstalk:[36,0,1],base:[24,0,1],get_transport_cls:[8,4,1],memory:[13,0,1]},"kombu.transport.virtual.exchange.ExchangeType":{equivalent:[35,1,1],lookup:[35,1,1],prepare_bind:[35,1,1]},"kombu.pools":{reset:[29,4,1],ProducerPool:[29,5,1],set_limit:[29,4,1]},"kombu.transport.base.Message":{body:[24,2,1],ack:[24,1,1],delivery_info:[24,2,1],acknowledged:[24,2,1],properties:[24,2,1],decode:[24,1,1],headers:[24,2,1],content_encoding:[24,2,1],content_type:[24,2,1],reject:[24,1,1],delivery_tag:[24,2,1],requeue:[24,1,1],payload:[24,2,1],channel:[24,2,1]},"kombu.compat.Publisher":{revive:[42,1,1],send:[42,1,1],publish:[42,1,1],release:[42,1,1],close:[42,1,1],declare:[42,1,1]},"kombu.connection.ConnectionPool":{release:[43,1,1],acquire:[43,1,1],LimitExceeded:[43,2,1]},"kombu.transport.pyredis.Transport":{Channel:[31,5,1]},"kombu.utils.log.NullHandler":{emit:[1,1,1]},"kombu.connection.BrokerConnection":{SimpleBuffer:[43,1,1],info:[43,1,1],create_transport:[43,1,1],SimpleQueue:[43,1,1],get_transport_cls:[43,1,1],channel_errors:[43,2,1],drain_events:[43,1,1],transport:[43,2,1],host:[43,2,1],ChannelPool:[43,1,1],connection:[43,2,1],connection_errors:[43,2,1],ensure:[43,1,1],Pool:[43,1,1],ensure_connection:[43,1,1],release:[43,1,1],clone:[43,1,1],channel:[43,1,1],connect:[43,1,1]},"kombu.entity":{Queue:[20,5,1],Exchange:[20,5,1]},"kombu.transport.SQS":{Channel:[6,5,1],Transport:[6,5,1]},"kombu.transport.SQS.Channel.Table":{routes_for:[6,1,1],queue_bind:[6,1,1],create_binding:[6,1,1],select:[6,1,1],queue_delete:[6,1,1],exchange_delete:[6,1,1],get_exchanges:[6,1,1],get_item:[6,1,1],get_queue:[6,1,1]},"kombu.utils.finalize.Finalize":{cancel:[25,1,1],still_active:[25,1,1]},"kombu.serialization":{register:[9,4,1],decode:[9,4,1],registry:[9,3,1],encode:[9,4,1],raw_encode:[9,4,1],SerializerNotInstalled:[9,6,1]},"kombu.transport.mongodb.Transport":{Channel:[5,5,1]},"kombu.transport.virtual.Transport":{close_channel:[2,1,1],drain_events:[2,1,1],interval:[2,2,1],establish_connection:[2,1,1],close_connection:[2,1,1],state:[2,2,1],create_channel:[2,1,1],default_port:[2,2,1],cycle:[2,2,1],Channel:[2,2,1],Cycle:[2,2,1]},"kombu.compat":{Publisher:[42,5,1],Consumer:[42,5,1],ConsumerSet:[42,5,1]},"kombu.transport.virtual.exchange.FanoutExchange":{deliver:[35,1,1],lookup:[35,1,1]},"kombu.utils.finalize":{Finalize:[25,5,1]},"kombu.transport.librabbitmq.Connection.Channel.Message":{body:[41,2,1],ack:[41,1,1],MessageStateError:[41,6,1],acknowledged:[41,2,1],delivery_tag:[41,2,1],decode:[41,1,1],reject:[41,1,1],requeue:[41,1,1],payload:[41,2,1],channel:[41,2,1]},"kombu.transport.mongodb.Transport.Channel":{close:[5,1,1],client:[5,2,1]},"kombu.transport.memory.Transport":{state:[13,2,1],Channel:[13,5,1]},"kombu.messaging.Producer":{compression:[23,2,1],exchange:[23,2,1],serializer:[23,2,1],revive:[23,1,1],publish:[23,1,1],routing_key:[23,2,1],auto_declare:[23,2,1],on_return:[23,2,1],declare:[23,1,1],channel:[23,2,1]},"kombu.transport.SQS.Transport.Channel.Table":{routes_for:[6,1,1],queue_bind:[6,1,1],create_binding:[6,1,1],queue_delete:[6,1,1],get_item:[6,1,1],exchange_delete:[6,1,1],get_exchanges:[6,1,1],select:[6,1,1],get_queue:[6,1,1]},"kombu.common":{entry_to_queue:[16,4,1]},"kombu.pidbox":{Node:[33,5,1],Mailbox:[33,5,1]},"kombu.transport.virtual.QoS":{get:[2,1,1],ack:[2,1,1],restore_unacked:[2,1,1],restore_unacked_once:[2,1,1],prefetch_count:[2,2,1],can_consume:[2,1,1],reject:[2,1,1],append:[2,1,1]},"kombu.transport.pyredis":{Channel:[31,5,1],Transport:[31,5,1]},"kombu.transport.virtual.Message":{ack:[2,1,1],MessageStateError:[2,6,1],acknowledged:[2,2,1],serializable:[2,1,1],decode:[2,1,1],reject:[2,1,1],requeue:[2,1,1],payload:[2,2,1]},"kombu.pidbox.Node":{handle:[33,1,1],handlers:[33,2,1],dispatch_from_message:[33,1,1],hostname:[33,2,1],handle_call:[33,1,1],dispatch:[33,1,1],mailbox:[33,2,1],state:[33,2,1],handler:[33,1,1],handle_cast:[33,1,1],handle_message:[33,1,1],reply:[33,1,1],Consumer:[33,1,1],channel:[33,2,1],listen:[33,1,1]},"kombu.transport.librabbitmq.Transport.Connection.Channel.Message":{body:[41,2,1],delivery_tag:[41,2,1],channel:[41,2,1]},"kombu.exceptions":{TimeoutError:[0,6,1],MessageStateError:[0,6,1],ConnectionLimitExceeded:[0,6,1],LimitExceeded:[0,6,1],ChannelLimitExceeded:[0,6,1],NotBoundError:[0,6,1]},"kombu.transport.memory":{Transport:[13,5,1],Channel:[13,5,1]},"kombu.transport.librabbitmq.Connection.Channel":{exchange_declare:[41,1,1],basic_ack:[41,1,1],Producer:[41,1,1],queue_bind:[41,1,1],queue_unbind:[41,1,1],basic_qos:[41,1,1],basic_reject:[41,1,1],flow:[41,1,1],basic_get:[41,1,1],after_reply_message_received:[41,1,1],basic_publish:[41,1,1],basic_consume:[41,1,1],prepare_message:[41,1,1],queue_declare:[41,1,1],basic_cancel:[41,1,1],close:[41,1,1],Message:[41,5,1],list_bindings:[41,1,1],Consumer:[41,1,1],queue_purge:[41,1,1],message_to_python:[41,1,1]},"kombu.transport.beanstalk":{Transport:[36,5,1],Channel:[36,5,1]},"kombu.pools.ProducerPool":{prepare:[29,1,1],Producer:[29,5,1],setup:[29,1,1],release:[29,1,1],"new":[29,1,1],create_producer:[29,1,1]},"kombu.transport.base.Transport":{close_channel:[24,1,1],channel_errors:[24,2,1],drain_events:[24,1,1],establish_connection:[24,1,1],client:[24,2,1],connection_errors:[24,2,1],create_channel:[24,1,1],default_port:[24,2,1],close_connection:[24,1,1]},"kombu.clocks":{LamportClock:[21,5,1]},"kombu.transport.librabbitmq.Channel":{Message:[41,5,1],message_to_python:[41,1,1],prepare_message:[41,1,1]},"kombu.transport.memory.Transport.Channel":{after_reply_message_received:[13,1,1]},"kombu.transport.virtual.exchange.TopicExchange":{wildcards:[35,2,1],deliver:[35,1,1],lookup:[35,1,1],prepare_bind:[35,1,1],key_to_pattern:[35,1,1]},"kombu.messaging.Consumer":{qos:[23,1,1],consume:[23,1,1],register_callback:[23,1,1],callbacks:[23,2,1],receive:[23,1,1],queues:[23,2,1],cancel_by_queue:[23,1,1],flow:[23,1,1],revive:[23,1,1],declare:[23,1,1],purge:[23,1,1],cancel:[23,1,1],auto_declare:[23,2,1],on_decode_error:[23,2,1],recover:[23,1,1],no_ack:[23,2,1],channel:[23,2,1]},"kombu.transport.mongodb.Channel":{close:[5,1,1],client:[5,2,1]},"kombu.utils.compat.CompatOrderedDict":{fromkeys:[10,7,1],setdefault:[10,1,1],keys:[10,1,1],items:[10,1,1],clear:[10,1,1],popitem:[10,1,1],update:[10,1,1],pop:[10,1,1],values:[10,1,1],itervalues:[10,1,1],iteritems:[10,1,1],copy:[10,1,1],iterkeys:[10,1,1]},"kombu.transport.virtual.BrokerState":{bindings:[2,2,1],exchanges:[2,2,1]},"kombu.transport.librabbitmq.Transport":{drain_events:[41,1,1],establish_connection:[41,1,1],default_connection_params:[41,2,1],Connection:[41,5,1],create_channel:[41,1,1],close_connection:[41,1,1]},"kombu.connection":{ChannelPool:[43,5,1],ConnectionPool:[43,5,1],BrokerConnection:[43,5,1]},"kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError":{message:[41,2,1],args:[41,2,1]},"kombu.transport.librabbitmq.Message":{body:[41,2,1],delivery_tag:[41,2,1],channel:[41,2,1]},"kombu.compat.ConsumerSet":{add_queue:[42,1,1],add_consumer_from_dict:[42,1,1],iterconsume:[42,1,1],add_consumer:[42,1,1],consume:[42,1,1],register_callback:[42,1,1],receive:[42,1,1],flow:[42,1,1],revive:[42,1,1],cancel_by_queue:[42,1,1],purge:[42,1,1],consuming_from:[42,1,1],discard_all:[42,1,1],cancel:[42,1,1],close:[42,1,1],recover:[42,1,1],declare:[42,1,1],qos:[42,1,1]},"kombu.abstract.MaybeChannelBound":{is_bound:[19,2,1],when_bound:[19,1,1],bind:[19,1,1],revive:[19,1,1],maybe_bind:[19,1,1],channel:[19,2,1]},"kombu.transport.beanstalk.Transport.Channel":{close:[36,1,1],client:[36,2,1]},"kombu.entity.Queue":{exclusive:[20,2,1],unbind:[20,1,1],when_bound:[20,1,1],consume:[20,1,1],name:[20,2,1],get:[20,1,1],auto_delete:[20,2,1],durable:[20,2,1],routing_key:[20,2,1],purge:[20,1,1],queue_bind:[20,1,1],queue_arguments:[20,2,1],maybe_bind:[20,1,1],channel:[20,2,1],binding_arguments:[20,2,1],cancel:[20,1,1],queue_declare:[20,1,1],declare:[20,1,1],exchange:[20,2,1],"delete":[20,1,1]},"kombu.transport.librabbitmq.Transport.Connection":{Channel:[41,5,1]},"kombu.transport.pyredis.Transport.Channel":{client:[31,2,1],active_queues:[31,2,1],subclient:[31,2,1],basic_cancel:[31,1,1],basic_consume:[31,1,1],get_table:[31,1,1],close:[31,1,1]},"kombu.entity.Exchange":{name:[20,2,1],auto_delete:[20,2,1],delivery_mode:[20,2,1],publish:[20,1,1],declare:[20,1,1],maybe_bind:[20,1,1],arguments:[20,2,1],Message:[20,1,1],type:[20,2,1],durable:[20,2,1],channel:[20,2,1],"delete":[20,1,1]},"kombu.utils.log":{get_logger:[1,4,1],NullHandler:[1,5,1]},"kombu.transport.beanstalk.Channel":{close:[36,1,1],client:[36,2,1]},"kombu.transport.librabbitmq":{Message:[41,5,1],Channel:[41,5,1],Connection:[41,5,1],Transport:[41,5,1]},"kombu.abstract":{MaybeChannelBound:[19,5,1]},"kombu.simple":{SimpleBuffer:[40,5,1],SimpleQueue:[40,5,1]},"kombu.transport.memory.Channel":{after_reply_message_received:[13,1,1]},"kombu.transport.virtual.exchange":{DirectExchange:[35,5,1],ExchangeType:[35,5,1],FanoutExchange:[35,5,1],TopicExchange:[35,5,1]},"kombu.compression":{encoders:[28,4,1],get_encoder:[28,4,1],register:[28,4,1],compress:[28,4,1],decompress:[28,4,1],get_decoder:[28,4,1]},kombu:{compat:[42,0,1],compression:[28,0,1],simple:[40,0,1],pools:[29,0,1],"abstract":[19,0,1],syn:[7,0,1],entity:[20,0,1],exceptions:[0,0,1],connection:[43,0,1],clocks:[21,0,1],common:[16,0,1],messaging:[23,0,1],pidbox:[33,0,1],serialization:[9,0,1],utils:[30,0,1],transport:[8,0,1]},"kombu.utils.debug":{setup_logging:[39,4,1],Logwrapped:[39,5,1]},"kombu.clocks.LamportClock":{forward:[21,1,1],adjust:[21,1,1],value:[21,2,1]},"kombu.transport.virtual":{QoS:[2,5,1],exchange:[35,0,1],BrokerState:[2,5,1],Transport:[2,5,1],scheduling:[38,0,1],AbstractChannel:[2,5,1],Message:[2,5,1],Channel:[2,5,1]},"kombu.syn":{select_blocking_method:[7,4,1],detect_environment:[7,4,1],blocking:[7,4,1]},"kombu.transport.mongodb":{Channel:[5,5,1],Transport:[5,5,1]},"kombu.compat.Consumer":{add_queue:[42,1,1],iterconsume:[42,1,1],qos:[42,1,1],process_next:[42,1,1],register_callback:[42,1,1],receive:[42,1,1],consume:[42,1,1],flow:[42,1,1],cancel_by_queue:[42,1,1],revive:[42,1,1],purge:[42,1,1],consuming_from:[42,1,1],discard_all:[42,1,1],fetch:[42,1,1],cancel:[42,1,1],close:[42,1,1],iterqueue:[42,1,1],recover:[42,1,1],declare:[42,1,1],wait:[42,1,1]},"kombu.pools.ProducerPool.Producer":{release:[29,1,1],close:[29,1,1],declare:[29,1,1],publish:[29,1,1],revive:[29,1,1]},"kombu.utils":{compat:[10,0,1],reprcall:[30,4,1],kwdict:[30,4,1],log:[1,0,1],finalize:[25,0,1],encoding:[3,0,1],maybe_list:[30,4,1],partition:[30,4,1],functional:[11,0,1],rpartition:[30,4,1],emergency_dump_state:[30,4,1],cached_property:[30,2,1],uuid4:[30,4,1],fxrange:[30,4,1],debug:[39,0,1],gen_unique_id:[30,4,1],retry_over_time:[30,4,1],fxrangemax:[30,4,1],say:[30,4,1],reprkwargs:[30,4,1],uuid:[30,4,1]},"kombu.utils.encoding":{safe_repr:[3,4,1],safe_str:[3,4,1],default_encoding:[3,4,1]},"kombu.transport.librabbitmq.Channel.Message":{body:[41,2,1],delivery_tag:[41,2,1],channel:[41,2,1]},"kombu.transport.pyredis.Channel":{client:[31,2,1],active_queues:[31,2,1],subclient:[31,2,1],basic_cancel:[31,1,1],basic_consume:[31,1,1],get_table:[31,1,1],close:[31,1,1]},"kombu.messaging":{Consumer:[23,5,1],Producer:[23,5,1]},"kombu.utils.compat":{LifoQueue:[10,5,1],CompatOrderedDict:[10,5,1]},"kombu.transport.base":{Message:[24,5,1],Transport:[24,5,1]}},terms:{fanoutexchang:35,represent:23,all:[23,37,14,2,15,6,20,42,35,10],concept:14,broke:37,snif:37,selinux:37,get_reply_queu:33,consum:[22,23,33,37,14,2,38,15,40,18,41,20,42],pluggabl:14,interchang:22,four:[14,20],unseri:9,sleep:[30,43,37],publish:[23,24,37,14,2,15,29,18,41,20,42,40,43],abil:14,follow:[23,37,14,15,29,42,21],disk:20,content:[12,24,9,37,15,23,29,42],typeerror:30,depend:[0,37,14,17,20,43],subscrib:[42,23],base64:[15,37],descript:20,send:[22,23,33,9,14,37,15,27,17,20,42,21],articl:[14,20],dispatch_from_messag:33,init:33,program:15,certain:37,body_encod:37,under:14,sens:20,spec:[29,23,42],sent:[23,24,37,14,2,15,41,20,42],suitabl:9,passiv:[41,2,37,20],mpg:22,global:[42,23,13,37],"__exit__":37,string:[12,23,3,37,15,18,8,20,43,9],without:[17,37,15,27,20],fals:[23,37,2,29,30,41,20,42,43,10],unacknowledg:[42,2,23],util:[11,12,39,9,25,3,38,28,10,18,19,7,1,30,16],ident:[14,39,20],fan:14,failur:[24,37],drain_ev:[33,24,37,14,2,41,43],affect:[14,23,42,37],ticket:33,exact:35,abcast:33,iterconsum:42,level:[14,22,1],did:37,exchange_opt:[40,43],messagestateerror:[0,2,24,41],list:[37,23,9,14,26,28,15,17,43],nasdaq:[14,20],rabbitmq:[23,37,14,26,20,42],"try":[0,23,30,33,37],item:[9,43,6,10],entity_nam:6,race:37,maxsiz:10,default_port:[2,24],quick:14,"__copy__":37,prepar:[29,2,30],pleas:[14,37],experienc:37,impli:20,when_bound:[19,20],slower:15,maybe_list:30,still_act:25,lamport_timestamp:21,sync:[14,21],second:[30,43,37],video:[14,22],pass:[33,23,9,37,15,29,30,42,43],download:14,port:[24,37,14,2,17,41,43],append:2,compat:[11,12,37,14,15,18,42,10],index:[14,12],what:37,establish_connect:[2,24,41],routes_for:6,sub:14,clock:[37,12,21,18],repli:[33,41,20],get_logg:1,connection_error:[24,43,37],brief:26,access:[2,37,20],delet:[23,37,14,2,41,30,6,20,42,43],host:[17,43,41,37],version:[14,30,37],key_to_pattern:35,"new":[23,9,14,2,37,28,29,20,42,43,10],fall:[42,23],ever:[37,20],method:[0,23,24,29,9,2,37,15,28,17,41,7,20,42,33,35,43],requeu:[23,24,2,26,41,42],transport_alias:8,full:[14,17,8],hash:[14,20],timeouterror:0,reprkwarg:30,iteritem:10,join:14,gener:[33,12,37,29,18,30,20],never:43,onli:[22,9,37,14,2,20,21],len:40,behaviour:37,unstabl:37,pub:14,address:43,path:[43,8,37],along:[29,23,42],becom:37,modifi:20,sinc:15,valu:[23,37,2,30,41,20,21,10],wait:[23,14,7,20,42,43],convert:[2,41,37],produc:[22,23,37,14,15,29,18,41,42,40,43],sender:21,get_transport_cl:[43,8],configuar:14,serializat:37,reason:[14,26],delivery_tag:[41,2,24,6],queue:[22,23,24,13,37,14,2,41,31,40,18,6,20,42,43,35,16],datetim:22,base:[9,24,12,2,37,18,35],loop:43,within:[42,23],action:[30,37,20],implement:[37,14,2,26,43,35],fxrangemax:30,chanc:[30,38],amqplain:37,semant:[43,41,37],via:[14,37],regardless:43,reiniti:37,modul:[12,43,15,37],lamportclock:[21,37],layer:14,deprec:37,beanstalk:[14,12,37,36,18],api:[2,37,18,12],celerybeat:33,basic_qo:[2,41],suddenli:37,instal:[14,12,37,9],redi:[37,14,31,17,43,35],simultaen:[0,43],establish:[17,19,41,43,37],select:[24,37,2,6,41,7],highli:14,regex:35,usd:[14,20],from:[22,23,24,25,14,2,41,37,38,17,6,20,42,40,43,21,10],login_method:[43,37],would:[9,37],memori:[12,13,37,14,2,17,18,20,43],regist:[42,23,9,15,28],upgrad:37,next:[30,37],handler:33,call:[0,22,29,23,14,37,33,17,19,7,20,42,43],until:[42,23,30,43,20],criteria:20,taken:25,"_queue_bind":35,prev:35,type:[33,23,24,9,14,2,37,38,15,28,29,41,7,20,42,35],tell:43,science_new:20,more:[0,2,5,41,8,13,14,15,17,19,20,35,23,24,9,28,31,33,36,38,40,6,42,43],prefetch_s:[42,2,41,23],desir:15,faircycl:[2,38],get_exchang:6,detail:[0,2,5,41,8,13,14,19,20,35,23,24,9,28,31,33,36,38,40,6,42,43],relat:[21,37],ctype:37,simplebuff:[22,40,43,37],warn:[42,23,43,37],seral:37,flag:[40,2,19,23,20],"transient":[22,41,43,37,20],message_to_python:[2,41,37],rabbit:[14,43],aris:22,known:37,obj:[43,25],hold:20,arg:[25,41,2,30,31,29,19,6,7,42,10],set_limit:[29,37],content_typ:[23,24,9,2,28,15,29,41,20,42],must:[23,24,37,14,2,29,30,41,20,42,43],annoy:14,topic:[14,18,35,20],none:[22,23,24,25,41,2,37,33,39,29,30,6,8,20,42,40,43,9,10],word:[14,35,20],aws_secret_access_kei:37,restor:2,alia:[37,28,8,20],setup:[14,29],work:[26,15,37],uniqu:[41,30,37,20],histori:[12,37],default_transport:8,conceptu:21,remain:20,carrot:[14,42,15,37],del:30,can:[22,23,24,9,14,2,37,15,17,19,41,20,42,30,21,43],pidbox:[33,12,18],unnecessari:9,root:[14,37],fetch:42,def:[22,33,30,43],overrid:[29,23,42],kombu:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,28,29,30,31,33,36,35,37,38,39,40,41,42,43],close_channel:[2,24],stream:9,give:[23,37,30,6,42,43],process:[22,23,24,14,2,15,41,42,33,21],autodetect:[29,23,42],share:[43,35],dump_entri:22,accept:[42,23,37],high:14,tag:[41,2,24,37,20],exchange_delet:[2,6],want:[9,37,2,15,23,17],tarbal:14,producerpool:[29,37],serial:[22,12,24,23,14,37,15,27,29,18,20,42,40,9],occur:[23,43,9,20],solem:[0,23,24,13,9,41,2,38,28,31,40,19,6,8,20,42,33,35,43],alwai:[14,43,37,20],end:[42,23],secur:14,rather:[42,2,23],anoth:43,interval_step:[30,43],how:[30,43],purg:[42,23,20],"__init__":22,conn:[14,43,37],reject:[41,2,24,26],answer:26,instead:[22,2,24,37],reviv:[29,23,19,42,37],simpl:[22,12,23,37,27,40,18,42,21],connect_timeout:43,convers:35,updat:[10,37],map:[33,23,2,29,8,42,35],product:37,subsecond:37,resourc:[29,43,38,37],librabbitmq:[41,12,37,18],initial_valu:21,clone:[43,37],after:[14,23,41,29,37],befor:[14,30,21,43],known_host:37,mixin:19,date:[22,18,37,15,27],drastic:37,data:[22,33,9,2,37,27,15,18,41,8],consistent_read:6,handl:[14,23,33,37],github:14,attempt:[42,23],ssl:[43,37],encapsul:41,seriou:37,counter:21,credenti:37,correspond:[2,35,37],django:[14,37],issu:[14,37],callback:[22,23,33,25,14,2,37,30,29,19,41,20,42,43],maintain:[21,15],environ:[7,37],allow:[14,37],media:14,exclus:[42,41,20],mechan:[42,23],order:[23,10],queue_delet:[2,6],origin:[23,24,14,2,41,42],help:[14,12],media_exchang:14,queue_opt:[40,43],move:[21,37],becaus:20,jpeg:15,handle_cal:33,image_queu:14,report:[14,37],own:[17,24,21,37,20],"_global":41,menual:14,undeliver:[29,23],brokerconnect:[22,33,24,37,14,2,17,43],still:[42,23,37],warren:14,on_rev:[43,37],uuid:[30,37],fit:15,binari:[9,37,15,20],itervalu:10,amqplib:[14,17,43,37],fix:[14,30,37],deliv:[42,23,35,20],reprcal:30,afer:19,window:[42,23],"_0123456789_______abcdefghijklmnopqrstuvwxyz______abcdefghijklmnopqrstuvwxyz____x7fx80x81x82x83x84x85x86x87x88x89x8ax8bx8cx8dx8ex8fx90x91x92x93x94x95x96x97x98x99x9ax9bx9cx9dx9ex9fxa0xa1xa2xa3xa4xa5xa6xa7xa8xa9xaaxabxacxadxaexafxb0xb1xb2xb3xb4xb5xb6xb7xb8xb9xbaxbbxbcxbdxbexbfxc0xc1xc2xc3xc4xc5xc6xc7xc8xc9xcaxcbxccxcdxcexcfxd0xd1xd2xd3xd4xd5xd6xd7xd8xd9xdaxdbxdcxddxdexdfxe0xe1xe2xe3xe4xe5xe6xe7xe8xe9xeaxebxecxedxeexefxf0xf1xf2xf3xf4xf5xf6xf7xf8xf9xfaxfbxfcxfdxfexff":6,requir:[22,35,37],persist:[22,37,40,18,20,43],mail:[14,26],therefor:20,consumerset:[42,18,37],select_blocking_method:7,epol:37,eur:[14,20],non:[14,2,20],good:15,"return":[33,23,24,9,2,37,15,28,30,41,20,35,10],greater:21,thei:[14,22,15,20],reveal:26,python:[11,22,24,12,14,2,37,15,30,41,42,9],auto:[43,15,20],as_dict:37,auth:37,detect_environ:[7,37],synopsi:[14,12],framework:[14,12],cet:37,automat:[23,37,14,29,42,43],restore_unacked_onc:2,now:[30,37,15,20],discuss:26,oper:[0,23,37,14,20,42,43],introduct:[14,18,33],interval_max:[30,43],term:[42,23],name:[22,23,33,9,14,37,28,40,30,6,8,20,42,43],anyth:37,event:[23,14,2,29,43,21],drop:37,userid:[17,22,43,41,37],authent:37,separ:[14,43,35,20],easili:14,reactiv:[42,23],mode:[37,20],timeout:[22,33,37,14,2,40,41,43],each:[2,38,15,30,20,43,21],debug:[12,39,37,18],found:20,unicod:[9,30,15],stock:[14,20],attributeerror:37,acquir:[43,37],mean:[23,24,37,2,17,41,20,42,21],reset:[29,37],memoryerror:37,redeliv:[42,23],replac:[42,3],individu:37,multipl:[43,41,37],discard_al:42,ensur:[14,2,19,43,37],realli:14,wrap:37,autent:37,default_connection_param:[41,37],connect:[0,2,5,41,12,13,14,17,18,19,20,22,23,24,27,29,30,33,36,37,39,6,42,43],channelpool:[43,37],our:[14,37,20],happen:[14,22,24,37],errror:14,orient:14,special:[14,9,20],out:[0,2,37,14],variabl:37,given:37,msgpack:[9,15],unbound:[0,14,20],emul:2,goe:2,open:[14,43,30,15,37],invaliddata:37,pika:[14,17,43,37],ret:37,payload:[14,2,24,41,22],max_retri:[30,43],adjust:21,cest:37,max:30,print:[22,30,43],gen_unique_id:30,correct:37,qualifi:8,directexchang:35,insid:15,advanc:[14,23,42],bound_sicence_new:20,kilobyt:37,differ:[17,22,37],undo:[42,23],standard:[14,22,35,15,37],small:30,control:[42,23,37],orm:14,mime:[9,28],dictionari:[9,15,10],put:[22,2,24,41,40],org:[42,30,21,37],close_connect:[2,24,41],decompress:28,video_queu:14,pyyaml:[9,37],add_queue_from_dict:37,couldn:43,thread:[43,37],forc:[43,37],unwant:37,could:37,traceback:43,synchron:[2,20,18,21,12],fromtimestamp:22,david:36,connectionlimitexceed:[0,43],turn:37,channel_error:[24,43],issue10272:37,outsid:14,log_messag:22,top:[14,37],frequent:[12,26],user:[14,12,22,27,37],add_consumer_from_dict:42,softwar:[14,21],create_transport:43,slept:43,attapattu:20,directli:[2,37],exchange_declar:[2,41],exchang:[22,12,33,23,14,2,41,37,15,31,29,18,6,20,42,40,43,35],qualiti:[42,2,23,18],number:[0,29,23,2,37,17,30,42,43],basic_get:[2,41],ziegler:36,mai:[23,24,15,17,20,42,43],instruct:15,alreadi:[0,23,24,14,2,19,41,20,42],done:[23,2,29,20,42,43],messag:[0,2,41,12,14,15,17,18,20,35,22,23,24,26,27,29,33,9,21,37,40,6,42,43],blank:20,miss:15,primari:15,retry_over_tim:30,size:[14,23,42,37],prioriti:[23,2,29,41,20,42],is_bound:19,sourc:14,"long":[30,37,20],smaller:[42,23,15],guest:[22,37,14,17,41,43],queue_bind:[41,2,6,20],unknown:37,licens:[0,2,5,41,8,12,13,14,19,20,35,23,24,9,28,31,33,36,38,40,6,42,43],safe_str:3,system:37,least:20,silenc:37,necessarili:20,monkei:[7,37],statement:14,which:[22,23,37,15,17,20,42,10],show:37,interfac:[22,12,24,14,27,40,18,42,43,35],scheme:[14,15,20],"final":[33,12,37,18,25],store:[14,30,35,37,20],listen:[33,37],premoli:5,option:[33,23,9,14,37,15,40,20,42,43,16],auto_delet:[37,2,41,20,42,35],namespac:33,shallow:10,message_data:2,specifi:[22,23,24,9,2,37,15,29,8,20,42,43],direct:[33,14,2,18,41,20,35],broadcast:[33,35],forward:[37,21,20],basic_cancel:[41,2,6,31,37],too:14,consult:[43,8],basic_publish:[2,41],than:[23,14,15,20,42,21],send_messag:37,conveni:9,keyword:[30,43,37],whenev:37,provid:[14,30,37,43,20],remov:[22,24,37,2,41,20,10],connectionpool:[43,37],uuid4:30,structur:[2,24,41,15,9],routing_kei:[33,23,14,2,41,15,29,6,20,42,40,43,35],project:14,classmethod:10,str:[23,9],were:[37,20],posit:30,design:20,minut:20,introduc:37,no_ack:[23,37,41,2,40,6,20,42,43],transport:[12,24,13,36,14,2,37,38,27,5,17,18,6,31,8,41,43,35],simpledb:[14,6,37],deliveri:[24,41,20],sai:30,stdin:43,kwdict:30,abov:[22,15],enable_callback:42,adher:2,modern:15,add_queu:42,ani:[23,37,14,15,20,42,43,35],packag:[14,9,42],binding_argu:20,have:[22,23,37,14,15,17,30,29,20,42,43],"__main__":22,need:[22,29,23,14,37,15,17,42,43,35],notimplementederror:[42,2,23],predic:38,next_token:6,caus:[15,37],built:[14,30,15,8,20],zero:[14,23,42,20],inform:[17,24,20],destroi:37,latter:[22,9],note:[23,9,37,15,29,20,42],also:[23,37,14,15,17,20,42,43,21],exampl:[22,33,9,14,37,17,30,20,43,35],get_tabl:[35,2,6,31],take:[23,30],indic:12,fmt:30,text:[14,24,28],channel:[0,2,5,41,13,14,15,18,19,20,35,22,23,24,29,31,33,36,37,39,40,6,42,43],recurs:15,even:[9,37,14,17,7,20],copi:[43,19,35,10],unless:9,distribut:[14,37],kombu_log_channel:37,usernam:[17,43],previou:37,compress:[22,12,23,14,28,29,18,19,42,40],dialogu:20,keyerror:37,crash:37,most:[14,43,20],regular:14,brpop:37,bsd:[0,2,5,41,8,13,14,19,20,35,23,24,9,28,31,33,36,38,40,6,42,43],process_media:14,"class":[1,2,5,6,8,10,13,15,19,20,35,22,23,24,25,29,30,31,33,36,21,37,38,39,40,41,42,43],lazili:43,bound:[33,37,14,19,20,35],marshal:9,don:[14,15,37],exc:[23,30,43],url:37,entry_to_queu:[16,37],later:37,request:[42,23,43,9],doe:[23,37,14,8,20,42],declar:[23,37,14,2,29,20,42,40],determin:20,auto_declar:[29,23,42,37],latest:[14,37],gracefulli:14,translat:37,recipi:[42,23],type_to_nam:37,serializ:2,multi_cal:33,wikipedia:[14,21],handle_cast:33,speedup:15,after_reply_message_receiv:[41,13],create_bind:6,protocol:[14,35],resolve_transport:8,find:[42,23],setter:30,current:[22,23,37,2,33,29,19,7,20,42,40,43,21],fxrang:30,explicitli:[17,20],locat:37,mutual_exclusion_algorithm:21,s_distributed_:21,kombu_log_connect:37,transact:2,configur:[14,43,37],releas:[37,27,29,18,42,43],forev:[30,43,37],should:[23,37,14,30,42,9],x00x01x02x03x04x05x06x07x08tnx0bx0crx0ex0fx10x11x12x13x14x15x16x17x18x19x1ax1bx1cx1dx1ex1f:6,latenc:37,dict:43,local:[42,23,20],over:[30,15],pyredi:[12,31,18],info:[22,33,43,37],loss:[29,23],contribut:[14,12],get:[22,12,14,2,38,28,40,30,6,8,20,43,35],kombu_log_debug:37,familiar:14,express:[15,37],lifoqueu:[10,37],nativ:[14,15],amazon:[14,6,37],fifo:[10,37],popitem:10,increas:[30,37],pipermail:26,get_queu:[33,6],restart:20,bound_science_new:20,item_nam:6,enabl:[23,37,2,40,41,42,43],held:[42,23],cyclic:37,patch:[14,7,37],channel_id:[41,37],cach:30,common:[12,37,14,18,20,16],partit:30,contain:[2,9,20],septemb:[18,27],where:[30,37,38,7,20],get_decod:28,respond:20,set:[29,23,24,35,9,14,2,37,38,15,17,19,41,20,42,30,21,43],basic_ack:[41,2,6],dump:30,sep:30,basic_reject:[2,41],"0x102659ee0":10,fork:37,see:[0,2,5,6,8,13,14,17,19,20,35,23,24,9,26,28,29,30,31,33,36,21,38,40,41,42,43],fanout:[33,37,14,18,20,35],mandatori:[23,37,29,41,20,42],result:[43,7],respons:[43,20],close:[22,36,37,14,2,41,38,5,29,6,31,20,42,40,43],channel_or_connect:14,serializernotinstal:9,retriev:6,eventlet:[7,37],if_unus:[2,20],onc:2,infinit:42,sphinx:14,can_consum:2,detect:15,hopefulli:30,deleg:37,databas:17,someth:[22,37],particip:14,aws_access_key_id:37,unack:2,state:[33,13,2,18,30,20,35],won:20,logwrap:39,prefetch_count:[42,2,41,23],between:[23,37,2,29,30,20,42,43,21],register_callback:[14,23,42],"import":[14,17,37,22,20],paramet:[23,9,2,37,28,29,30,20,42,43,35],across:14,attribut:[37,14,15,20,43,35],altern:[42,23,43,15],signatur:[29,23,42,37],limitexceed:[0,43],nowait:[2,41,20],pylibrabbitmq:[41,37],kei:[22,23,37,14,2,29,20,42,43,35,10],as_uri:37,ask:[0,2,31,41,8,12,13,14,19,20,35,23,24,26,28,33,9,38,40,6,42,43],default_seri:9,xrang:22,lamport:21,flow:[42,2,41,23],condit:37,pypi:[14,42,37],cycl:[2,15],prepare_messag:[2,41],here:22,solv:37,mailbox:[33,18],come:[22,37],alias:[43,28,8,37],both:[14,22,37,20],mongod:37,last:[43,37,10,20],execed:43,supports_fanout:[14,35,6,37],howev:[15,37],equal:[42,23,38,10],emit:[1,37],connection_info:33,etc:[14,15],instanc:[30,23,24,37,2,15,39,19,41,20,42,43],default_channel:37,context:[22,33,37],logic:21,improv:[42,23],iterqueu:42,repeatlast:30,com:[14,43,26],simplequeu:[22,40,43,37],load:43,simpli:14,kwd:10,cancer:20,point:2,instanti:[29,23,43,42,37],overview:[14,18,9],insist:43,distinguish:37,dispatch:[33,23,42],colon:43,shutdown:2,linux:37,cancel:[33,23,25,14,2,37,20,42],respect:37,guid:[12,27],assum:20,backend:[35,13,37],resynchron:21,ensure_connect:[43,37],creat:[22,33,37,17,19,6,20,43],yaml:[9,15],stamp:21,due:24,been:[0,23,24,37,14,2,29,41,42,43],compon:37,json:[22,9,23,14,37,15,29],much:30,autoretri:37,interpret:[14,20],basic:[22,23,37],raw_encod:9,queue_declar:[41,2,37,20],addit:[22,23,24,37,29,30,20,42,40,43],ghettoq:37,"__len__":40,unregist:[9,37],field:[17,20],if_empti:[2,20],lifo:[10,37],imag:[14,15],search:12,argument:[22,29,23,2,37,33,17,30,41,20,42,43,35],decim:15,doesn:[26,6],rememb:[14,43,10],uncknowledg:2,repres:9,former:22,queue_nam:22,"case":[9,15,20],exchange_typ:[42,2],stolen:20,queue_argu:20,process_next:42,raw:[9,24,2,15,27,20],plain:15,wiki:21,properti:[23,24,37,14,2,29,30,41,20,42],aim:14,defin:[14,2,35,22,20],"while":[22,33,37,14,23,30],suport:43,unbind:20,"typeof":2,create_channel:[2,24,41],error:[22,24,37,3,20,43],fun:[33,43,30,38,7],servic:[42,2,23,18],region:[6,37],visibility_timeout:6,transport_opt:[43,6,37],conninfo:6,larger:15,ordereddict:37,increment:21,advantag:15,readi:[42,2,23],tabl:[12,37,14,2,6,8,20,35],henc:20,them:[14,22,20],jpg:15,destin:[33,20],notbounderror:[0,14],"default":[29,23,24,9,14,2,37,15,17,6,7,8,20,42,43,35,10],kwarg:[33,36,24,13,25,41,2,38,30,5,29,19,6,7,20,42,40,31,35,43],consuming_from:[42,37],avi:14,apply_glob:[42,2,23],incom:21,ascii:9,sever:[14,17],scienc:20,issue4978:30,weakref:25,incompat:37,develop:[14,37],welcom:14,stop:[42,23,30],author:[14,37],perform:[14,23,37,42,20],suggest:14,make:[22,37,14,30,7,20],couchdb:[14,37],cross:15,same:[22,23,37,14,15,17,20,43],check:20,read:[14,15,20],when:[22,23,24,37,14,2,15,17,19,29,8,20,42,30,21,43],html:26,decod:[23,24,9,2,37,28,15,18,41,42],timestamp:22,algorithm:[14,20],document:[14,12,43,17,42],start:[14,30,37,43,20],complet:43,iterkei:10,clear:[40,10],finish:[42,23,20],http:[37,14,26,30,42,21],hostnam:[17,22,43,33,37],charact:[14,9,35,20],hang:37,syn:[12,37,7,18],solut:14,fairli:[2,15],rais:[23,24,9,14,2,37,30,41,20,42,43],max_item:6,initi:[2,37],mani:[43,15],lolcat1:14,chang:[2,37,12],recent:[43,37],fromkei:10,drain:[29,2,23],kept:14,equival:[22,35],polling_interv:37,older:37,cjson:[15,37],whole:[42,23],reload_schedul:33,itself:[42,23,37],inherit:[2,37],cutekitten:22,thought:21,client:[33,23,24,13,36,14,2,37,5,41,6,31,20,42,43],command:[33,37],thi:[22,23,24,35,9,14,2,37,28,17,30,41,29,20,42,33,21,43],choos:17,entiti:[0,12,20,23,18],queue_purg:[2,41],rout:[22,23,37,14,2,29,6,20,42,43,35],usual:[33,2,43,9],identifi:[24,41,28,20],basi:15,just:[14,20],entri:22,exclud:35,on_return:[29,23],activ:[42,2,43,23,20],findandmodifi:37,percoco:5,part:[2,15,20],overflow:[42,23],sdb:6,simultan:[0,43],yet:[17,26,37],languag:15,previous:[28,37],task:14,password:[17,22,43,41,37],emergency_dump_st:30,easi:14,rpartit:30,consumer_tag:[37,2,6,31,41,20],raw_messag:[2,41],except:[0,12,23,14,2,37,38,15,29,18,30,41,43,9],shortcut:[22,43],blog:20,add:[14,37],codec:37,primit:[14,20],noack:41,schedul:[12,38,18],sslerror:37,logger:[22,39,1,37],match:[14,35,37,20],default_encod:3,build:14,applic:[14,33,24,9,20],dataerror:37,pyamqplib:[43,8],maybechannelbound:19,format:[6,37],preserv:20,multiprocess:25,do_restor:2,recov:[42,2,23],include_password:37,pop:10,amq:[2,35],world:37,bit:15,characterist:15,associ:[37,28,20],get_item:6,reply_exchang:33,insert:10,like:[14,22,15,20],specif:[23,17,20,42,43,35],header:[23,24,37,2,15,29,41,20,42,40,35],rajith:20,arbitrari:[29,23,42,37],manual:[14,23,20],integ:[37,20],server:[23,24,37,14,2,41,20,42,43],basic_recov:2,from_dict:42,"boolean":15,necessari:37,either:[14,30,20],if_unusu:2,choic:15,popular:14,async:[33,12,37,14,18,7],nice:23,manag:[2,37],two:[22,23,37,14,30,20,42],underli:[43,37],node:[33,18],exceed:[0,30,43,37],cancel_by_queu:[42,23,37],easy_instal:14,acknowledg:[0,23,24,2,40,41,20,43],interv:[2,30,43],anyjson:37,some:[14,21,15,37],back:[2,24,41],self:[22,9,30,43,40],abstractchannel:2,on_decode_error:[23,37],sure:[30,7],restore_unack:2,guarante:2,delivery_info:24,log_queu:22,librari:[22,15,20],registri:[18,37,28,9],loglevel:39,poll:[2,20],lead:37,collect:2,queue_unbind:41,leak:37,avoid:[42,23,37],get_nowait:40,octet:[42,23],subclass:[42,2,23],cast:33,bst:37,retri:[30,43],leav:[37,20],unit:14,slash:37,pattern:[14,6,20],postencod:24,notabl:15,localhost:[22,37,14,17,41,43],refer:[17,12,37,15,18],preload:43,encourag:14,object:[22,23,25,14,37,15,19,20,43,9,10],idiomat:14,uncompress:28,reach:30,usag:[43,21,37],broker:[23,37,2,41,20,42,43],properli:[37,20],step:30,prefetch:[42,2,23],maybe_bind:[19,20],pickl:[14,9,15],although:[42,23,20],januari:26,peer:[42,23],"__name__":22,post:20,appli:[42,23,43,37],describ:[9,6,20],binding_kei:41,comparison:[14,12],about:[14,26,20],central:9,socket:[22,43,37],constraint:15,ack:[22,2,24,41,37],bound_exchang:[14,20],slightli:22,delivery_mod:[29,23,37,42,20],page:12,includ:[21,15,8,37],disadvantag:15,constructor:[33,2,43],discard:[2,24,41,43],errback:[30,43],disabl:[23,37,14,2,40,42,43],block:[22,40,43,7,37],everi:[14,30,15,37],topicexchang:35,qsize:40,around:15,"float":15,encod:[22,12,24,23,14,3,37,15,28,29,18,41,20,42,9],domain:[14,6,20],terminolog:[14,12],three:9,down:[42,23],pair:[43,10,20],list_bind:41,empti:[37,20],contrib:37,exchangetyp:35,your:[14,17,37,15,20],durabl:[14,2,41,20,42,43,35],per:[15,37],rkei:[35,15],log:[22,12,37,1,18],wai:43,compatordereddict:10,transfer:15,support:[29,23,9,14,2,37,15,17,20,42,35],question:[12,26],iter:[6,10],fast:15,custom:[14,37,15,20],avail:[23,9,14,37,28,20,42,43],lost:[37,20],singl:[22,23,37,30,20,43,35],setdefault:10,no_loc:41,tracker:[14,12],myqueu:22,safe_repr:3,stai:14,slight:15,treat:20,"function":[11,12,37,28,18,30,7,8,20,43],monoton:21,simplejson:15,handle_messag:33,channellimitexceed:[0,43],tupl:[9,24,35,30],recommend:[43,37,20],colliss:30,bodi:[33,23,24,9,2,37,28,29,41,20,42],gain:15,newer:30,scope:2,beat:33,shamelessli:20,line:43,"true":[22,23,24,37,14,2,41,33,29,6,20,42,40,43,35,10],bug:[14,12,30,37],count:2,reappli:43,immedi:[23,29,41,20,42,43],utf:9,attr:30,consist:[14,20],possibl:[14,9,37],whether:20,best:15,caller:43,maximum:[0,30,21,43],forcefulli:37,"____________":6,record:1,gevent:[7,37],limit:[0,33,23,2,37,15,29,42,43],time:[0,22,37,30,43,21],virtual_host:[17,22,43,41,37],basic_consum:[41,2,6,31],otherwis:[42,23,20],problem:[14,37],delimit:20,nullhandl:1,"catch":30,featur:[14,12,29,23],add_consum:42,bind:[23,14,2,19,6,20,42,35],create_produc:29,myq:37,cover:20,"abstract":[2,19],filenam:22,proven:14,descriptor:30,cure:20,exist:[14,6,37,20],file:[14,43,15],behavior:37,pip:14,ship:37,tmp:14,probabl:15,again:[30,43],active_queu:31,wast:15,amqp:[22,12,23,14,41,37,17,19,6,29,20,42,9],content_encod:[23,24,9,2,15,29,41,20,42],buffer:[22,18,43,40],titl:[34,4,32],excel:22,exitprior:25,virtual:[12,37,14,2,38,17,18,43,35],flavio:5,vendor:14,my_pictur:15,subclient:31,other:[23,15,17,42,21,10],lookup:[35,37],copyright:[0,2,5,41,8,13,19,20,35,23,24,9,28,31,33,36,37,38,40,6,42,43],my_callback:14,better:15,test:[14,37],you:[22,23,24,9,14,2,37,15,17,41,20,43],queu:14,deseri:[22,9,24,2,15,41],news_exchang:20,star:[14,20],wildcard:[35,20],fulli:8,mongodb:[14,12,37,5,18],why:26,plug:14,sqlalchemi:[14,37],setup_log:39,queri:6,consid:21,veri:30,pool:[29,12,43,37,18],legal:6,prepare_bind:35,receiv:[22,23,24,14,27,17,41,20,42,40,21],open_fil:30,longer:37,filterfunc:42,directori:[14,37],reliabl:14,gethostnam:22,rule:21,interval_start:[30,43],brokerst:2,ignor:[42,23],dot:[14,35,20],potenti:[42,23,37],get_encod:28,reply_to:33,hello:37,cached_properti:30},objtypes:{"0":"py:module","1":"py:method","2":"py:attribute","3":"py:data","4":"py:function","5":"py:class","6":"py:exception","7":"py:classmethod"},titles:["kombu.exceptions","Logging - kombu.utils.log","kombu.transport.virtual","String Encoding - kombu.utils.encoding","&lt;no title&gt;","kombu.transport.mongodb","kombu.transport.SQS","Async Utilities - kombu.syn","kombu.transport","kombu.serialization","Compat. utilities - kombu.utils.compat","kombu.utils.functional","Kombu Documentation","kombu.transport.memory","kombu - AMQP Messaging Framework for Python","Serialization","Common Utilities - kombu.common","Connections and transports","API Reference","kombu.compression","kombu.entity","Clocks and Synchronization - kombu.clocks","Simple Interface","kombu.messaging","kombu.transport.base","Finalize - kombu.utils.finalize","Frequently Asked Questions","User Guide","kombu.compression","General Pools - kombu.pools","Utilities - kombu.utils","kombu.transport.pyredis","&lt;no title&gt;","kombu.pidbox","&lt;no title&gt;","kombu.transport.virtual.exchange","kombu.transport.beanstalk","Change history","kombu.transport.virtual.scheduling","Debugging - kombu.utils.debug","kombu.simple","kombu.transport.librabbitmq","kombu.compat","kombu.connection"],objnames:{"0":"Python module","1":"Python method","2":"Python attribute","3":"Python data","4":"Python function","5":"Python class","6":"Python exception","7":"Python class method"},filenames:["reference/kombu.exceptions","reference/kombu.utils.log","reference/kombu.transport.virtual","reference/kombu.utils.encoding","reference/kombu.transport.pyamqplib","reference/kombu.transport.mongodb","reference/kombu.transport.SQS","reference/kombu.syn","reference/kombu.transport","reference/kombu.serialization","reference/kombu.utils.compat","reference/kombu.utils.functional","index","reference/kombu.transport.memory","introduction","userguide/serialization","reference/kombu.common","userguide/connections","reference/index","reference/kombu.abstract","reference/kombu.entity","reference/kombu.clocks","userguide/simple","reference/kombu.messaging","reference/kombu.transport.base","reference/kombu.utils.finalize","faq","userguide/index","reference/kombu.compression","reference/kombu.pools","reference/kombu.utils","reference/kombu.transport.pyredis","reference/kombu.transport.pypika","reference/kombu.pidbox","reference/kombu.transport.pycouchdb","reference/kombu.transport.virtual.exchange","reference/kombu.transport.beanstalk","changelog","reference/kombu.transport.virtual.scheduling","reference/kombu.utils.debug","reference/kombu.simple","reference/kombu.transport.librabbitmq","reference/kombu.compat","reference/kombu.connection"]}) \ No newline at end of file
+Search.setIndex({objects:{"kombu.transport.pypika.BlockingConnection":{close:[31,1,1],Super:[31,5,1],ensure_drain_events:[31,1,1],channel:[31,1,1]},"kombu.transport.SQS.Channel":{transport_options:[6,5,1],conninfo:[6,5,1],exchange_delete:[6,1,1],basic_ack:[6,1,1],close:[6,1,1],sqs:[6,5,1],supports_fanout:[6,5,1],region:[6,5,1],entity_name:[6,1,1],basic_cancel:[6,1,1],basic_consume:[6,1,1],sdb:[6,5,1],table:[6,5,1],get_table:[6,1,1],Table:[6,3,1],get_exchanges:[6,1,1],visibility_timeout:[6,5,1]},"kombu.transport.beanstalk.Transport":{Channel:[34,3,1]},"kombu.connection.ChannelPool":{release:[42,1,1],acquire:[42,1,1],LimitExceeded:[42,5,1]},"kombu.transport.virtual.scheduling.FairCycle":{close:[36,1,1],get:[36,1,1]},"kombu.transport.pycouchdb.Transport":{Channel:[33,3,1]},"kombu.transport.SQS.Transport.Channel":{transport_options:[6,5,1],conninfo:[6,5,1],Table:[6,3,1],exchange_delete:[6,1,1],basic_ack:[6,1,1],entity_name:[6,1,1],sqs:[6,5,1],supports_fanout:[6,5,1],region:[6,5,1],basic_cancel:[6,1,1],basic_consume:[6,1,1],sdb:[6,5,1],close:[6,1,1],get_table:[6,1,1],table:[6,5,1],get_exchanges:[6,1,1],visibility_timeout:[6,5,1]},"kombu.simple.SimpleBuffer":{queue_opts:[38,5,1],qsize:[38,1,1],producer:[38,5,1],get:[38,1,1],clear:[38,1,1],get_nowait:[38,1,1],queue:[38,5,1],exchange_opts:[38,5,1],channel:[38,5,1],put:[38,1,1],close:[38,1,1],consumer:[38,5,1],no_ack:[38,5,1],"__len__":[38,1,1]},"kombu.transport.virtual.Channel":{do_restore:[2,5,1],qos:[2,5,1],basic_ack:[2,1,1],basic_reject:[2,1,1],basic_get:[2,1,1],close:[2,1,1],basic_recover:[2,1,1],exchange_declare:[2,1,1],exchange_delete:[2,1,1],queue_bind:[2,1,1],drain_events:[2,1,1],state:[2,5,1],basic_publish:[2,1,1],basic_consume:[2,1,1],queue_delete:[2,1,1],queue_declare:[2,1,1],queue_purge:[2,1,1],basic_qos:[2,1,1],basic_cancel:[2,1,1],message_to_python:[2,1,1],get_table:[2,1,1],exchange_types:[2,5,1],flow:[2,1,1],"typeof":[2,1,1],Message:[2,5,1],prepare_message:[2,1,1]},"kombu.transport.virtual.scheduling":{FairCycle:[36,3,1]},"kombu.pidbox.Mailbox":{Node:[32,1,1],abcast:[32,1,1],get_reply_queue:[32,1,1],exchange:[32,5,1],multi_call:[32,1,1],namespace:[32,5,1],cast:[32,1,1],connection:[32,5,1],call:[32,1,1],get_queue:[32,1,1],reply_exchange:[32,5,1],type:[32,5,1]},"kombu.simple.SimpleQueue":{queue_opts:[38,5,1],qsize:[38,1,1],producer:[38,5,1],get:[38,1,1],clear:[38,1,1],get_nowait:[38,1,1],queue:[38,5,1],exchange_opts:[38,5,1],channel:[38,5,1],put:[38,1,1],close:[38,1,1],consumer:[38,5,1],no_ack:[38,5,1],"__len__":[38,1,1]},"kombu.transport.virtual.exchange.ExchangeType":{equivalent:[20,1,1],lookup:[20,1,1],prepare_bind:[20,1,1]},"kombu.transport.virtual.Message.MessageStateError":{message:[2,5,1],args:[2,5,1]},"kombu.transport.SQS.Transport":{Channel:[6,3,1]},"kombu.transport":{pyamqplib:[4,0,1],SQS:[6,0,1],mongodb:[5,0,1],resolve_transport:[8,4,1],pyredis:[30,0,1],virtual:[2,0,1],TRANSPORT_ALIASES:[8,2,1],DEFAULT_TRANSPORT:[8,2,1],beanstalk:[34,0,1],base:[23,0,1],pycouchdb:[33,0,1],get_transport_cls:[8,4,1],memory:[13,0,1],pypika:[31,0,1]},"kombu.pidbox":{Node:[32,3,1],Mailbox:[32,3,1]},"kombu.transport.pypika.AsyncoreConnection":{Super:[31,5,1],close:[31,1,1],on_data_available:[31,1,1],ensure_drain_events:[31,1,1],channel:[31,1,1]},"kombu.pools":{reset:[28,4,1],ProducerPool:[28,3,1],set_limit:[28,4,1]},"kombu.transport.base.Message":{body:[23,5,1],ack:[23,1,1],delivery_info:[23,5,1],acknowledged:[23,5,1],properties:[23,5,1],decode:[23,1,1],headers:[23,5,1],content_encoding:[23,5,1],content_type:[23,5,1],reject:[23,1,1],delivery_tag:[23,5,1],requeue:[23,1,1],payload:[23,5,1],channel:[23,5,1]},"kombu.compat.Publisher":{revive:[41,1,1],send:[41,1,1],publish:[41,1,1],release:[41,1,1],close:[41,1,1],declare:[41,1,1]},"kombu.connection.ConnectionPool":{release:[42,1,1],acquire:[42,1,1],LimitExceeded:[42,5,1]},"kombu.transport.pyredis.Transport":{Channel:[30,3,1]},"kombu.transport.pyamqplib.Transport":{verify_connection:[4,1,1],drain_events:[4,1,1],establish_connection:[4,1,1],default_connection_params:[4,5,1],Connection:[4,3,1],create_channel:[4,1,1],close_connection:[4,1,1]},"kombu.utils.log.NullHandler":{emit:[1,1,1]},"kombu.transport.pycouchdb.Transport.Channel":{client:[33,5,1]},"kombu.connection.BrokerConnection":{SimpleBuffer:[42,1,1],info:[42,1,1],create_transport:[42,1,1],SimpleQueue:[42,1,1],get_transport_cls:[42,1,1],channel_errors:[42,5,1],drain_events:[42,1,1],transport:[42,5,1],host:[42,5,1],ChannelPool:[42,1,1],connection:[42,5,1],connection_errors:[42,5,1],ensure:[42,1,1],Pool:[42,1,1],ensure_connection:[42,1,1],release:[42,1,1],clone:[42,1,1],channel:[42,1,1],connect:[42,1,1]},"kombu.entity":{Queue:[19,3,1],Exchange:[19,3,1]},"kombu.transport.SQS":{Channel:[6,3,1],Transport:[6,3,1]},"kombu.transport.SQS.Channel.Table":{routes_for:[6,1,1],queue_bind:[6,1,1],create_binding:[6,1,1],select:[6,1,1],queue_delete:[6,1,1],exchange_delete:[6,1,1],get_exchanges:[6,1,1],get_item:[6,1,1],get_queue:[6,1,1]},"kombu.transport.pyamqplib":{Transport:[4,3,1],Connection:[4,3,1],Message:[4,3,1],Channel:[4,3,1]},"kombu.utils.finalize.Finalize":{cancel:[24,1,1],still_active:[24,1,1]},"kombu.transport.pypika.Channel":{basic_ack:[31,1,1],basic_get:[31,1,1],channel_id:[31,5,1],basic_publish:[31,1,1],basic_consume:[31,1,1],message_to_python:[31,1,1],queue_purge:[31,1,1],close:[31,1,1],Message:[31,3,1],prepare_message:[31,1,1]},"kombu.serialization":{register:[9,4,1],decode:[9,4,1],registry:[9,2,1],encode:[9,4,1],raw_encode:[9,4,1],SerializerNotInstalled:[9,6,1]},"kombu.transport.mongodb.Transport":{Channel:[5,3,1]},"kombu.transport.pyamqplib.Message":{body:[4,5,1],delivery_tag:[4,5,1],channel:[4,5,1]},"kombu.transport.virtual.Transport":{close_channel:[2,1,1],drain_events:[2,1,1],interval:[2,5,1],establish_connection:[2,1,1],close_connection:[2,1,1],state:[2,5,1],create_channel:[2,1,1],default_port:[2,5,1],cycle:[2,5,1],Channel:[2,5,1],Cycle:[2,5,1]},"kombu.compat":{Publisher:[41,3,1],Consumer:[41,3,1],ConsumerSet:[41,3,1]},"kombu.transport.virtual.exchange.FanoutExchange":{deliver:[20,1,1],lookup:[20,1,1]},"kombu.transport.pypika":{SyncTransport:[31,3,1],AsyncoreConnection:[31,3,1],Message:[31,3,1],AsyncoreTransport:[31,3,1],Channel:[31,3,1],BlockingConnection:[31,3,1]},"kombu.transport.mongodb.Transport.Channel":{close:[5,1,1],client:[5,5,1]},"kombu.transport.memory.Transport":{state:[13,5,1],Channel:[13,3,1]},"kombu.messaging.Producer":{compression:[22,5,1],exchange:[22,5,1],serializer:[22,5,1],revive:[22,1,1],publish:[22,1,1],routing_key:[22,5,1],auto_declare:[22,5,1],on_return:[22,5,1],declare:[22,1,1],channel:[22,5,1]},"kombu.transport.SQS.Transport.Channel.Table":{routes_for:[6,1,1],queue_bind:[6,1,1],create_binding:[6,1,1],queue_delete:[6,1,1],get_item:[6,1,1],exchange_delete:[6,1,1],get_exchanges:[6,1,1],select:[6,1,1],get_queue:[6,1,1]},"kombu.transport.pyamqplib.Connection":{dispatch_method:[4,1,1],drain_events:[4,1,1],wait_multi:[4,1,1],read_timeout:[4,1,1],close:[4,1,1],channel:[4,1,1],wait:[4,1,1]},"kombu.transport.virtual.QoS":{get:[2,1,1],ack:[2,1,1],restore_unacked:[2,1,1],restore_unacked_once:[2,1,1],prefetch_count:[2,5,1],can_consume:[2,1,1],reject:[2,1,1],append:[2,1,1]},"kombu.transport.pyredis":{Channel:[30,3,1],Transport:[30,3,1]},"kombu.transport.virtual.Message":{ack:[2,1,1],MessageStateError:[2,6,1],acknowledged:[2,5,1],serializable:[2,1,1],decode:[2,1,1],reject:[2,1,1],requeue:[2,1,1],payload:[2,5,1]},"kombu.pools.ProducerPool":{prepare:[28,1,1],Producer:[28,3,1],setup:[28,1,1],release:[28,1,1],"new":[28,1,1],create_producer:[28,1,1]},"kombu.exceptions":{TimeoutError:[0,6,1],MessageStateError:[0,6,1],ConnectionLimitExceeded:[0,6,1],LimitExceeded:[0,6,1],ChannelLimitExceeded:[0,6,1],NotBoundError:[0,6,1]},"kombu.transport.memory":{Transport:[13,3,1],Channel:[13,3,1]},"kombu.utils.finalize":{Finalize:[24,3,1]},"kombu.transport.beanstalk":{Transport:[34,3,1],Channel:[34,3,1]},"kombu.pidbox.Node":{handle:[32,1,1],handlers:[32,5,1],dispatch_from_message:[32,1,1],hostname:[32,5,1],handle_call:[32,1,1],dispatch:[32,1,1],mailbox:[32,5,1],state:[32,5,1],handler:[32,1,1],handle_cast:[32,1,1],handle_message:[32,1,1],reply:[32,1,1],Consumer:[32,1,1],channel:[32,5,1],listen:[32,1,1]},"kombu.transport.base.Transport":{close_channel:[23,1,1],channel_errors:[23,5,1],drain_events:[23,1,1],establish_connection:[23,1,1],client:[23,5,1],connection_errors:[23,5,1],create_channel:[23,1,1],default_port:[23,5,1],close_connection:[23,1,1]},"kombu.transport.memory.Transport.Channel":{after_reply_message_received:[13,1,1]},"kombu.transport.pypika.SyncTransport":{drain_events:[31,1,1],establish_connection:[31,1,1],default_connection_params:[31,5,1],Connection:[31,5,1],create_channel:[31,1,1],Message:[31,3,1],close_connection:[31,1,1]},"kombu.transport.pycouchdb":{create_message_view:[33,4,1],Channel:[33,3,1],Transport:[33,3,1]},"kombu.transport.pyamqplib.Channel.Message":{body:[4,5,1],delivery_tag:[4,5,1],channel:[4,5,1]},"kombu.transport.virtual.exchange.TopicExchange":{wildcards:[20,5,1],deliver:[20,1,1],lookup:[20,1,1],prepare_bind:[20,1,1],key_to_pattern:[20,1,1]},"kombu.messaging.Consumer":{qos:[22,1,1],consume:[22,1,1],register_callback:[22,1,1],callbacks:[22,5,1],receive:[22,1,1],queues:[22,5,1],cancel_by_queue:[22,1,1],flow:[22,1,1],revive:[22,1,1],declare:[22,1,1],purge:[22,1,1],cancel:[22,1,1],channel:[22,5,1],on_decode_error:[22,5,1],recover:[22,1,1],no_ack:[22,5,1],auto_declare:[22,5,1]},"kombu.transport.mongodb.Channel":{close:[5,1,1],client:[5,5,1]},"kombu.transport.pyamqplib.Channel":{basic_cancel:[4,1,1],basic_consume:[4,1,1],message_to_python:[4,1,1],close:[4,1,1],Message:[4,3,1],prepare_message:[4,1,1]},"kombu.utils.compat.CompatOrderedDict":{fromkeys:[10,7,1],setdefault:[10,1,1],keys:[10,1,1],items:[10,1,1],clear:[10,1,1],popitem:[10,1,1],update:[10,1,1],pop:[10,1,1],values:[10,1,1],itervalues:[10,1,1],iteritems:[10,1,1],copy:[10,1,1],iterkeys:[10,1,1]},"kombu.transport.virtual.BrokerState":{bindings:[2,5,1],exchanges:[2,5,1]},"kombu.transport.virtual.exchange.DirectExchange":{lookup:[20,1,1],deliver:[20,1,1]},"kombu.connection":{ChannelPool:[42,3,1],ConnectionPool:[42,3,1],BrokerConnection:[42,3,1]},"kombu.transport.pycouchdb.Channel":{client:[33,5,1]},"kombu.compat.ConsumerSet":{add_queue:[41,1,1],add_consumer_from_dict:[41,1,1],iterconsume:[41,1,1],add_consumer:[41,1,1],consume:[41,1,1],register_callback:[41,1,1],receive:[41,1,1],flow:[41,1,1],revive:[41,1,1],cancel_by_queue:[41,1,1],purge:[41,1,1],consuming_from:[41,1,1],discard_all:[41,1,1],cancel:[41,1,1],close:[41,1,1],recover:[41,1,1],declare:[41,1,1],qos:[41,1,1]},"kombu.abstract.MaybeChannelBound":{is_bound:[18,5,1],when_bound:[18,1,1],bind:[18,1,1],revive:[18,1,1],maybe_bind:[18,1,1],channel:[18,5,1]},"kombu.transport.beanstalk.Transport.Channel":{close:[34,1,1],client:[34,5,1]},"kombu.entity.Queue":{exclusive:[19,5,1],unbind:[19,1,1],when_bound:[19,1,1],consume:[19,1,1],name:[19,5,1],get:[19,1,1],auto_delete:[19,5,1],durable:[19,5,1],routing_key:[19,5,1],purge:[19,1,1],queue_bind:[19,1,1],queue_arguments:[19,5,1],maybe_bind:[19,1,1],channel:[19,5,1],binding_arguments:[19,5,1],cancel:[19,1,1],queue_declare:[19,1,1],declare:[19,1,1],exchange:[19,5,1],"delete":[19,1,1]},"kombu.transport.pypika.AsyncoreTransport":{Connection:[31,5,1]},"kombu.transport.pyredis.Transport.Channel":{client:[30,5,1],get_table:[30,1,1],subclient:[30,5,1],basic_cancel:[30,1,1],basic_consume:[30,1,1],active_queues:[30,5,1],close:[30,1,1]},"kombu.entity.Exchange":{name:[19,5,1],auto_delete:[19,5,1],delivery_mode:[19,5,1],publish:[19,1,1],declare:[19,1,1],maybe_bind:[19,1,1],arguments:[19,5,1],Message:[19,1,1],type:[19,5,1],durable:[19,5,1],channel:[19,5,1],"delete":[19,1,1]},"kombu.utils.log":{get_logger:[1,4,1],NullHandler:[1,3,1]},"kombu.transport.beanstalk.Channel":{close:[34,1,1],client:[34,5,1]},"kombu.abstract":{MaybeChannelBound:[18,3,1]},"kombu.simple":{SimpleBuffer:[38,3,1],SimpleQueue:[38,3,1]},"kombu.transport.memory.Channel":{after_reply_message_received:[13,1,1]},"kombu.transport.virtual.exchange":{DirectExchange:[20,3,1],ExchangeType:[20,3,1],FanoutExchange:[20,3,1],TopicExchange:[20,3,1]},"kombu.compression":{encoders:[27,4,1],get_encoder:[27,4,1],register:[27,4,1],compress:[27,4,1],decompress:[27,4,1],get_decoder:[27,4,1]},kombu:{compat:[41,0,1],compression:[27,0,1],simple:[38,0,1],pools:[28,0,1],"abstract":[18,0,1],syn:[7,0,1],entity:[19,0,1],exceptions:[0,0,1],connection:[42,0,1],messaging:[22,0,1],pidbox:[32,0,1],serialization:[9,0,1],utils:[29,0,1],transport:[8,0,1]},"kombu.utils.debug":{setup_logging:[37,4,1],Logwrapped:[37,3,1]},"kombu.transport.pyamqplib.Transport.Connection":{read_timeout:[4,1,1],drain_events:[4,1,1],wait_multi:[4,1,1],channel:[4,1,1]},"kombu.transport.virtual":{QoS:[2,3,1],exchange:[20,0,1],BrokerState:[2,3,1],Transport:[2,3,1],scheduling:[36,0,1],AbstractChannel:[2,3,1],Message:[2,3,1],Channel:[2,3,1]},"kombu.syn":{select_blocking_method:[7,4,1],detect_environment:[7,4,1],blocking:[7,4,1]},"kombu.transport.mongodb":{Channel:[5,3,1],Transport:[5,3,1]},"kombu.compat.Consumer":{add_queue:[41,1,1],iterconsume:[41,1,1],qos:[41,1,1],process_next:[41,1,1],register_callback:[41,1,1],receive:[41,1,1],consume:[41,1,1],flow:[41,1,1],cancel_by_queue:[41,1,1],revive:[41,1,1],purge:[41,1,1],consuming_from:[41,1,1],discard_all:[41,1,1],fetch:[41,1,1],cancel:[41,1,1],close:[41,1,1],iterqueue:[41,1,1],recover:[41,1,1],declare:[41,1,1],wait:[41,1,1]},"kombu.pools.ProducerPool.Producer":{release:[28,1,1],close:[28,1,1],declare:[28,1,1],publish:[28,1,1],revive:[28,1,1]},"kombu.utils":{compat:[10,0,1],reprcall:[29,4,1],kwdict:[29,4,1],log:[1,0,1],finalize:[24,0,1],encoding:[3,0,1],maybe_list:[29,4,1],partition:[29,4,1],functional:[11,0,1],rpartition:[29,4,1],emergency_dump_state:[29,4,1],uuid4:[29,4,1],fxrange:[29,4,1],debug:[37,0,1],gen_unique_id:[29,4,1],retry_over_time:[29,4,1],fxrangemax:[29,4,1],say:[29,4,1],reprkwargs:[29,4,1],cached_property:[29,5,1]},"kombu.utils.encoding":{safe_repr:[3,4,1],safe_str:[3,4,1],default_encoding:[3,4,1]},"kombu.transport.pyredis.Channel":{client:[30,5,1],active_queues:[30,5,1],subclient:[30,5,1],basic_cancel:[30,1,1],basic_consume:[30,1,1],get_table:[30,1,1],close:[30,1,1]},"kombu.messaging":{Consumer:[22,3,1],Producer:[22,3,1]},"kombu.utils.compat":{LifoQueue:[10,3,1],CompatOrderedDict:[10,3,1]},"kombu.transport.base":{Message:[23,3,1],Transport:[23,3,1]}},terms:{fanoutexchang:20,represent:22,all:[22,35,14,2,4,15,6,19,41,20,10],code:[4,40],broke:35,snif:35,selinux:35,get_reply_queu:32,consum:[21,22,32,35,14,2,36,15,38,17,40,19,41],pluggabl:14,interchang:21,four:[14,19],unseri:9,concept:14,sleep:[29,42,35],publish:[22,23,35,14,2,15,28,17,19,41,38,42],abil:14,follow:[22,35,14,15,28,41],disk:19,deliveryinfo:40,content:[35,12,23,22,4,15,28,41,9],typeerror:29,depend:[0,35,14,16,19,42],subscrib:[41,22],base64:[15,35],descript:19,send:[21,22,32,9,14,4,15,26,16,19,41,35],articl:[14,19],dispatch_from_messag:32,init:32,program:15,certain:35,body_encod:35,under:[14,40],sens:19,shortstr:4,spec:[28,22,41],movsisyan:35,suitabl:9,passiv:[2,35,19],mpg:21,global:[41,22,13,35],"__exit__":35,solem:[0,22,23,13,9,2,4,36,27,30,31,38,18,6,8,19,41,32,20,35,42],fals:[22,35,2,31,28,29,19,41,42,10],mpl:40,unacknowledg:[41,2,22],util:[11,12,9,24,3,36,27,37,17,18,7,1,29,10],wikipedia:14,fan:14,failur:[23,4,35],drain_ev:[32,23,35,14,2,4,31,40,42],affect:[14,22,41,35],ticket:32,exact:20,abcast:32,iterconsum:41,level:[14,21,1],did:35,exchange_opt:[38,42],messagestateerror:[0,2,23],list:[35,22,9,14,25,27,15,16,42],nasdaq:[14,19],rabbitmq:[22,35,14,25,40,19,41],"try":[0,22,29,32,35],item:[9,42,6,10],entity_nam:6,race:35,blockingconnect:31,maxsiz:10,default_port:[2,23],small:29,"__copy__":35,overview:[14,17,9],prepar:[28,2,29],localhost:[21,35,14,16,40,42],pleas:[14,35],experienc:35,impli:19,when_bound:[18,19],slower:15,maybe_list:29,still_act:24,sync:14,second:[29,42,35],video:[14,21],pass:[32,22,9,35,15,28,29,41,42],download:[14,40],port:[23,35,14,2,16,42],append:2,compat:[11,12,35,14,15,17,41,10],index:[14,12],what:35,establish_connect:[2,23,4,31],routes_for:6,sub:14,eventlet:[7,35],repli:[32,4,19],get_logg:1,connection_error:[23,42,35],brief:25,current:[21,22,35,2,32,28,18,7,19,41,38,42],delet:[22,35,14,2,4,29,6,19,41,42],host:[16,42,40,35],version:[14,29,40,35],key_to_pattern:20,encourag:14,"new":[22,9,14,2,35,27,28,19,41,42,10],ever:[35,19],"public":40,requeu:[41,2,23,25,22],transport_alias:8,full:[14,16,40,8],hash:[14,19],timeouterror:0,reprkwarg:29,iteritem:10,join:14,gener:[32,12,35,28,17,29,19],never:42,onli:[21,9,35,14,2,19],len:38,bodi:[32,22,23,9,2,4,27,28,40,19,41,35],unstabl:35,were:[35,19],pub:14,address:42,path:[42,8,35],along:[28,22,41],becom:35,modifi:19,sinc:15,valu:[22,35,2,4,29,19,10],wait:[22,14,4,7,19,41,42],convert:[2,4,35],produc:[21,22,35,14,15,28,17,40,41,38,42],sender:4,configuar:14,serializat:35,reason:[14,25],autoreconf:40,delivery_tag:[2,23,4,6,31],queue:[21,22,23,13,35,14,2,30,31,38,17,6,40,19,41,42,20],datetim:21,base:[9,23,12,2,35,17,20],loop:42,action:[29,35,19],chang:[2,35,12],fxrangemax:29,chanc:[29,36],amqplain:35,semant:[42,35],via:[14,35],regardless:42,extra:40,appli:[41,22,42,35],modul:[12,42,15,35],layer:14,put:[21,2,23,38],beanstalk:[14,12,35,34,17],api:[2,35,17,12],celerybeat:32,basic_qo:2,suddenli:35,instal:[14,12,35,40,9],redi:[35,14,30,16,42,20],simultaen:[0,42],establish:[35,4,31,16,18,42],select:[2,23,6,7,35],highli:14,regex:20,usd:[14,19],from:[21,22,23,24,14,2,4,36,35,16,6,40,19,41,38,42,10],login_method:[42,35],would:[9,35],memori:[12,13,35,14,2,16,17,19,42],method_sig:4,regist:[41,22,9,15,27],upgrad:35,next:[29,35],overflow:[41,22],proeprti:40,handler:[32,31],call:[0,21,28,22,14,35,32,16,18,7,19,41,42],until:[41,22,29,42,19],criteria:19,msg:4,"_queue_bind":20,prev:20,type:[32,22,23,9,14,2,35,36,15,27,28,40,7,19,41,20],tell:42,science_new:19,more:[0,2,4,5,6,8,13,14,15,16,18,19,20,22,23,9,27,31,30,32,33,34,36,38,41,42],prefetch_s:[41,2,22],desir:15,faircycl:[2,36],get_exchang:6,detail:[0,2,4,5,6,8,13,14,18,19,20,22,23,9,27,31,30,32,33,34,36,38,41,42],mozilla:40,ctype:35,simplebuff:[21,38,42,35],warn:[41,22,42,35],directexchang:20,flag:[38,2,18,22,19],"transient":[21,42,35,19],message_to_python:[35,2,4,31],rabbit:[14,42,40],aris:21,known:35,obj:[42,24],hold:19,arg:[24,2,4,29,30,31,28,18,6,7,41,10],set_limit:[28,35],content_typ:[22,23,9,2,4,15,27,28,40,19,41,31],must:[22,23,35,14,2,4,28,29,19,41,42],annoy:14,topic:[14,17,20,19],none:[21,22,23,24,2,4,37,32,31,28,29,6,40,8,19,41,38,42,9,35,10],word:[14,20,19],aws_secret_access_kei:35,restor:2,alia:[35,31,27,8,19],setup:[14,28,40],work:[25,15,35],uniqu:[35,29,4,19],histori:[12,35],default_transport:8,descriptor:29,remain:19,carrot:[14,41,15,35],del:29,can:[21,22,23,9,14,2,4,15,16,18,40,19,41,42,29,35],pidbox:[32,12,17],unnecessari:9,root:[14,35],fetch:41,def:[21,32,29,40,42],overrid:[28,22,41],kombu:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,27,31,28,29,30,32,33,34,35,36,37,38,41,42],close_channel:[2,23],stream:9,give:[41,22,29,6,42],process:[21,22,23,14,2,15,41,32],synchron:[2,19],autodetect:[28,22,41],share:[42,20],dump_entri:21,accept:[41,22,35],high:14,tag:[35,2,23,4,19],exchange_delet:[2,6],want:[35,9,22,2,4,15,16],tarbal:14,producerpool:[28,35],serial:[21,12,23,22,14,35,15,26,28,17,19,41,38,9],occur:[22,42,9,19],string:[12,22,3,35,15,17,8,19,42,9],connectionlimitexceed:[0,42],end:[41,22],secur:14,rather:[41,2,22],anoth:42,interval_step:[29,42],uncompress:27,how:[29,42],purg:[41,22,19],"__init__":21,conn:[42,40,35],reject:[2,23,25],answer:25,instead:[21,2,23,40,35],reviv:[28,22,18,41,35],simpl:[21,12,35,26,22,38,17,41],connect_timeout:42,updat:[10,35],map:[32,22,2,28,8,41,20],product:35,subsecond:35,resourc:[28,42,4,36,35],alwai:[14,42,35,19],librabbitmq:[40,35],max:29,clone:[42,40,35],after:[28,22,4,35],befor:[14,29,42],wait_multi:4,known_host:35,mixin:18,date:[21,17,35,15,26],drastic:35,associ:[35,4,27,19],consistent_read:6,handl:[14,22,4,32,35],github:[14,40],attempt:[41,22],ssl:[42,35],encapsul:4,bind:[22,14,2,18,6,40,19,41,20],stdin:42,credenti:35,correspond:[2,20,35],django:[14,35],issu:[14,4,35],callback:[21,22,32,24,2,35,29,31,28,18,40,19,41,42],maintain:15,environ:[7,35],allow:[14,35],media:14,exclus:[41,19],mechan:[41,22],order:[22,10],queue_delet:[2,6],origin:[14,2,23,41,22],method_id:4,help:[14,12],media_exchang:14,queue_opt:[38,42],fall:[41,22],becaus:19,jpeg:15,handle_cal:32,image_queu:14,report:[14,35],own:[16,23,35,19],reconnect:4,undeliver:[28,22],brokerconnect:[21,32,23,35,14,2,16,42],still:[41,22,35],warren:14,uuid:[29,35],fit:15,binari:[9,35,15,19],itervalu:10,amqplib:[35,14,4,16,40,42],fix:[14,29,35],clymer:33,deliv:[41,22,20,19],reprcal:29,exchange_declar:[2,40],window:[41,22],"_0123456789_______abcdefghijklmnopqrstuvwxyz______abcdefghijklmnopqrstuvwxyz____x7fx80x81x82x83x84x85x86x87x88x89x8ax8bx8cx8dx8ex8fx90x91x92x93x94x95x96x97x98x99x9ax9bx9cx9dx9ex9fxa0xa1xa2xa3xa4xa5xa6xa7xa8xa9xaaxabxacxadxaexafxb0xb1xb2xb3xb4xb5xb6xb7xb8xb9xbaxbbxbcxbdxbexbfxc0xc1xc2xc3xc4xc5xc6xc7xc8xc9xcaxcbxccxcdxcexcfxd0xd1xd2xd3xd4xd5xd6xd7xd8xd9xdaxdbxdcxddxdexdfxe0xe1xe2xe3xe4xe5xe6xe7xe8xe9xeaxebxecxedxeexefxf0xf1xf2xf3xf4xf5xf6xf7xf8xf9xfaxfbxfcxfdxfexff":6,requir:[21,20,35],persist:[21,35,38,17,19,42],mail:[14,25],therefor:19,consumerset:[41,17,35],select_blocking_method:7,epol:35,eur:[14,19],non:[14,2,19],within:[41,22],"return":[32,22,23,9,2,35,15,27,29,19,20,10],thei:[14,21,15,19],reveal:25,python:[11,12,23,21,9,14,2,4,15,29,40,41,35],auto:[42,15,19],as_dict:35,auth:35,detect_environ:[7,35],framework:[14,12],cet:35,automat:[22,35,14,28,41,42],amqp_messag:31,restore_unacked_onc:2,now:[29,35,15,19],discuss:25,oper:[0,22,35,14,19,41,42],introduct:[14,17,32],interval_max:[29,42],term:[41,22],name:[21,22,32,9,14,35,27,38,29,6,8,19,41,42],anyth:35,event:[22,14,2,4,28,42],drop:35,userid:[16,21,42,40,35],authent:35,separ:[14,42,20,19],easili:14,localis:4,reactiv:[41,22],mode:[35,19],timeout:[21,32,35,14,2,4,31,38,42],each:[2,36,15,29,19,42],debug:[12,37,35,17],januari:25,unicod:[9,29,15],stock:[14,19],attributeerror:35,side:4,mean:[22,23,35,2,4,16,19,41],compil:40,memoryerror:35,redeliv:[41,22],replac:[41,3],individu:35,multipl:[42,35],discard_al:41,ensur:[14,2,18,42,35],realli:14,wrap:35,autent:35,default_connection_param:[35,4,31],connect:[0,2,4,5,6,12,13,14,16,17,18,19,21,22,23,34,26,31,28,29,32,33,35,37,40,41,42],forgot:35,urlpars:35,our:[14,4,35,19],happen:[14,21,23,35],patch:[14,7,35],errror:14,orient:14,special:[14,9,19],out:[0,2,35,14],variabl:35,given:35,msgpack:[9,15],unbound:[0,14,19],asyncoreconnect:31,goe:2,open:[14,42,29,15,35],invaliddata:35,pika:[14,16,42,35,31],ret:35,payload:[14,2,23,21],max_retri:[29,42],cest:35,unbind:19,print:[21,29,40,42],gen_unique_id:29,correct:35,qualifi:8,experiment:40,insid:15,advanc:[14,22,41],bound_sicence_new:19,kilobyt:35,differ:[16,21,35],undo:[41,22],standard:[14,21,20,15,35],quick:14,control:[41,22,35],orm:14,mime:[9,27],dictionari:[9,10,15],releas:[35,26,28,17,41,42],org:[41,29,40,35],close_connect:[2,23,4,31],video_queu:14,pyyaml:[9,35],add_queue_from_dict:35,setdefault:10,thread:[42,35],forc:[42,4,35],unwant:35,could:35,traceback:42,ask:[0,2,4,30,6,8,12,13,14,18,19,20,22,23,25,27,31,32,9,35,36,38,40,41,42],fromtimestamp:21,david:[33,34],recov:[41,2,22],turn:35,channel_error:[23,42],issue10272:35,reply_cod:4,log_messag:21,top:[14,40,35],frequent:[12,25],user:[14,12,21,26,35],add_consumer_from_dict:41,softwar:[14,40],create_transport:42,slept:42,attapattu:19,directli:[2,35],afer:18,exchang:[21,12,32,22,14,2,35,15,30,31,28,17,6,40,19,41,38,42,20],qualiti:[41,2,22,17],number:[0,28,22,2,35,16,29,41,42],basic_get:[2,40,31],ziegler:34,mai:[22,23,4,15,16,19,41,42],instruct:15,alreadi:[0,22,23,14,2,18,19,41],done:[22,2,28,19,41,42],messag:[0,2,4,6,12,14,15,16,17,19,20,21,22,23,25,26,31,28,32,9,35,38,40,41,42],blank:19,miss:15,primari:15,retry_over_tim:29,size:[14,22,41,35],prioriti:[22,2,4,31,28,19,41],is_bound:18,sourc:14,"long":[29,35,19],smaller:[41,22,15],guest:[21,35,14,16,40,42],queue_bind:[2,6,40,19],unknown:35,licens:[0,2,4,5,6,8,12,13,14,18,19,20,22,23,9,27,31,30,32,33,34,36,38,40,41,42],safe_str:3,mkdir:40,system:35,least:19,silenc:35,basic_publish:[2,40,31],monkei:[7,35],which:[21,22,35,4,15,16,19,41,10],show:35,scheme:[14,15,19],"final":[32,12,24,35,17],store:[14,29,20,35,19],listen:[32,35],premoli:5,option:[32,22,9,14,35,15,38,19,41,42],auto_delet:[35,2,20,41,19],namespac:32,shallow:10,message_data:[2,4,31],lower:35,specifi:[21,22,23,9,2,35,15,28,8,19,41,42],direct:[32,14,2,17,19,20],broadcast:[32,20],forward:[35,19],"short":4,consult:[42,8],necessarili:19,than:[22,35,14,15,19,41],send_messag:35,conveni:9,keyword:[29,40,42,35],whenev:35,provid:[35,14,4,29,19,42],couldn:42,connectionpool:[42,35],uuid4:29,structur:[2,23,15,9],routing_kei:[32,22,14,2,15,31,28,6,40,19,41,38,42,20],project:14,classmethod:10,info:[21,32,42,35],str:[22,9],seriou:35,posit:29,design:19,minut:19,other:[22,4,15,16,40,41,10],codegen:40,transport:[35,33,23,13,12,14,2,4,36,26,5,31,16,17,6,34,30,8,42,20],simpledb:[14,6,35],deliveri:[23,4,19],sai:29,counter:4,kwdict:29,abov:[21,15],enable_callback:41,adher:2,modern:15,add_queu:41,argument:[21,22,35,2,32,16,29,28,19,41,42,20],packag:[14,9,40,41],pip:14,binding_argu:19,have:[21,22,35,14,15,16,29,28,19,41,42],"__main__":21,need:[21,22,35,14,15,16,40,28,41,42,20],notimplementederror:[41,2,22],predic:36,next_token:6,caus:[4,15,35],built:[14,29,15,8,19],zero:[14,22,41,19],inform:[16,23,19],destroi:35,latter:[21,9],ack:[21,2,23,40,35],client:[32,33,23,13,22,14,2,4,35,5,31,6,34,30,19,41,42],note:[22,9,35,15,28,19,41],also:[22,35,14,15,16,19,41,42],without:[16,35,15,26,19],get_tabl:[20,2,6,30],take:[22,29],indic:[12,4],fmt:29,channel:[0,2,4,5,6,13,14,15,17,18,19,20,21,22,23,34,31,28,30,32,33,35,37,38,40,41,42],even:[9,35,14,16,7,19],copi:[42,18,20,10],unless:9,distribut:[14,40,35],kombu_log_channel:35,usernam:[16,42],previou:35,compress:[21,12,22,14,27,28,17,18,41,38],dialogu:19,crash:35,most:[14,42,19],regular:14,brpop:35,bsd:[0,2,4,5,6,8,13,14,18,19,20,22,23,9,27,31,30,32,33,34,36,38,41,42],process_media:14,"class":[1,2,4,5,6,8,10,13,15,18,19,20,21,22,23,24,31,28,29,30,32,33,34,35,36,37,38,41,42],lazili:42,bound:[32,35,14,18,19,20],marshal:9,don:[14,15,35],exc:[22,29,42],url:35,clear:[38,10],later:35,request:[41,22,42,4,9],doe:[22,35,14,8,19,41],basic_cancel:[2,4,6,30,35],determin:19,pattern:[14,6,19],latest:[14,35],gracefulli:14,translat:35,recipi:[41,22],type_to_nam:35,serializ:2,multi_cal:32,text:[14,23,4,40,27],handle_cast:32,speedup:15,after_reply_message_receiv:13,create_bind:6,protocol:[14,20],raw_encod:9,data:[21,32,9,2,4,15,26,17,8,35],find:[41,22],setter:29,access:[2,35,19],fxrang:29,explicitli:[16,19],locat:35,acquir:[42,35],copyright:[0,2,4,5,6,8,13,18,19,20,22,23,9,27,31,30,32,33,34,35,36,38,41,42],kombu_log_connect:35,"true":[21,22,23,35,14,2,32,28,6,40,19,41,38,42,20,10],transact:2,configur:[14,42,40,35],solut:14,forev:[29,42,35],should:[22,35,14,29,40,41,9],x00x01x02x03x04x05x06x07x08tnx0bx0crx0ex0fx10x11x12x13x14x15x16x17x18x19x1ax1bx1cx1dx1ex1f:6,latenc:35,dict:42,local:[41,22,19],over:[29,15],pyredi:[12,30,17],reset:[28,35],loss:[28,22],contribut:[14,12],get:[21,12,14,2,36,27,38,29,6,8,19,42,20],kombu_log_debug:35,familiar:14,express:[15,35],lifoqueu:[10,35],synctransport:31,nativ:[14,15],amazon:[14,6,35],cannot:4,fifo:[10,35],popitem:10,increas:[29,35],pipermail:25,get_queu:[32,6],restart:19,dispatch_method:4,bound_science_new:19,item_nam:6,enabl:[22,35,2,38,41,42],held:[41,22],cyclic:35,method:[0,22,23,28,9,2,4,15,27,16,7,19,41,32,20,35,42],rfc:4,channel_id:[35,4,31],cach:29,common:[14,19],partit:29,contain:[2,9,19],asyncoretransport:31,septemb:[17,26],where:[29,35,36,7,19],remov:[21,23,35,2,19,10],respond:[4,19],set:[28,22,23,9,14,2,35,36,15,16,18,19,41,29,20,42],basic_ack:[2,6,31],allowed_method:4,sep:29,basic_reject:2,around:15,get_decod:27,see:[0,2,4,5,6,8,13,14,16,18,19,20,22,23,9,25,27,31,28,29,30,32,33,34,36,38,40,41,42],fanout:[32,35,14,17,19,20],mandatori:[22,35,31,28,19,41],result:[42,7],respons:[42,19],fail:4,close:[21,34,35,2,4,36,5,31,28,6,40,30,19,41,38,42],serializernotinstal:9,retriev:6,if_unus:[2,19],onc:2,infinit:41,sphinx:14,can_consum:2,detect:[4,15],correctli:4,hopefulli:29,deleg:35,databas:16,someth:[21,35],particip:14,aws_access_key_id:35,unack:2,state:[32,13,2,17,29,19,20],won:19,logwrap:37,prefetch_count:[41,2,22],between:[22,35,2,28,29,19,41,42],register_callback:[14,22,41],"import":[21,35,14,16,40,19],paramet:[35,22,9,2,4,27,28,29,19,41,42,20],across:14,attribut:[35,14,15,19,42,20],altern:[41,22,42,15],signatur:[28,22,41,35],limitexceed:[0,42],nowait:[2,31,19],pylibrabbitmq:[40,35],kei:[21,22,35,14,2,28,19,41,42,20,10],as_uri:35,default_seri:9,xrang:21,flow:[41,2,22],mailbox:[32,17],pypi:[14,41,40,35],cycl:[2,15],prepare_messag:[2,4,31],here:21,distinguish:35,come:[21,40,35],prepare_bind:20,behaviour:35,mongod:35,last:[42,35,10,19],execed:42,supports_fanout:[14,20,6,35],region:[6,35],equal:[41,22,36,10],no_ack:[22,35,2,31,38,6,19,41,42],connection_info:32,etc:[14,15],instanc:[29,22,23,35,2,4,15,37,18,19,41,42],default_channel:35,context:[21,32,4,35],improv:[41,22],iterqueu:41,repeatlast:29,com:[14,42,25,40],scope:2,simplequeu:[21,38,42,35],load:42,simpli:14,kwd:10,cancer:19,point:2,instanti:[28,22,42,41,35],delivery_info:[23,40],insist:42,solv:35,dispatch:[32,22,4,41],colon:42,provok:4,shutdown:2,linux:35,cancel:[32,22,24,2,35,19,41],respect:35,poll:[2,40,19],assum:19,backend:[20,13,35],blog:19,ensure_connect:[42,35],yaml:[9,15],due:[23,4],empti:[35,19],compon:35,json:[21,9,22,14,35,15,28],much:29,autoretri:35,interpret:[14,19],basic:[21,22,35],auto_declar:[28,22,41,35],queue_declar:[2,35,40,19],addit:[21,22,23,35,28,29,19,41,38,42],ghettoq:35,"__len__":38,unregist:[9,35],field:[16,19],if_empti:[2,19],both:[14,21,35,19],lifo:[10,35],imag:[14,15],search:12,mher:35,ani:[22,35,14,4,15,19,41,42,20],decim:15,doesn:[25,6],uncknowledg:2,on_rev:[42,35],former:21,convers:20,"case":[9,15,19],exchange_typ:[41,2],stolen:19,queue_argu:19,process_next:41,raw:[9,23,2,15,26,19],plain:15,servic:[41,2,22,17],properti:[22,23,35,14,2,4,31,28,29,40,19,41],aim:14,defin:[21,14,2,4,19,20],"while":[21,32,35,14,22,29,40],suport:42,"typeof":2,create_channel:[2,23,4,31],error:[21,23,35,3,4,19,42],fun:[32,42,29,36,7],aid:4,howev:[15,35],visibility_timeout:6,transport_opt:[42,6,35],conninfo:6,parse_qsl:35,ordereddict:35,advantag:15,readi:[41,2,22],tabl:[12,35,14,2,6,8,19,20],henc:19,them:[14,21,19],jpg:15,destin:[32,19],notbounderror:[0,14],"default":[28,22,23,9,14,2,4,15,16,6,7,8,19,41,42,20,35,10],kwarg:[2,4,5,6,7,13,18,19,20,23,24,31,28,29,30,32,33,34,36,38,41,42],consuming_from:[41,35],avi:14,apply_glob:[41,2,22],synopsi:[14,12],ascii:9,ship:35,sever:[14,16],scienc:19,issue4978:29,weakref:24,incompat:35,develop:[14,35],welcom:14,stop:[41,22,29],author:[14,35],perform:[22,35,14,40,19,41],suggest:14,make:[21,35,14,29,40,7,19],couchdb:[14,33,35],header:[22,23,35,2,4,15,31,28,19,41,38,20],cross:15,same:[21,22,35,14,15,16,19,42],check:19,read:[14,15,19],when:[21,22,23,35,14,2,4,15,16,18,40,28,8,19,41,42,29],html:25,decod:[22,23,9,2,35,27,15,17,41],timestamp:21,algorithm:[14,19],document:[14,12,42,16,41],start:[14,29,35,42,19],complet:42,iterkei:10,finish:[41,22,19],http:[35,14,25,29,40,41],hostnam:[16,21,42,32,35],charact:[14,9,20,19],hang:35,syn:[12,35,7,17],decompress:27,fairli:[2,15],rais:[22,23,9,14,2,35,29,19,41,42],max_item:6,initi:[2,35],mani:[42,15],lolcat1:14,implement:[35,14,2,25,42,20],recent:[42,35],fromkei:10,drain:[28,2,22],kept:14,equival:[21,20],polling_interv:35,older:35,cjson:[15,35],whole:[41,22],reload_schedul:32,itself:[41,22,35],inherit:[2,35],cutekitten:21,pickl:[14,9,15],exampl:[21,32,9,14,35,16,29,40,19,42,20],command:[32,35],thi:[21,22,23,9,14,2,4,27,16,29,40,28,19,41,32,20,35,42],choos:16,entiti:[0,12,19,22,17],queue_purg:[2,31],rout:[21,22,35,14,2,28,6,19,41,42,20],usual:[32,2,42,9],identifi:[23,4,27,19],basi:15,just:19,seral:35,entri:21,exclud:20,on_return:[28,22],activ:[41,2,42,22,19],findandmodifi:35,percoco:5,part:[2,15,19],on_data_avail:31,sdb:6,simultan:[0,42],yet:[16,25,35],languag:15,previous:27,task:14,password:[16,21,42,40,35],emergency_dump_st:29,easi:14,rpartit:29,consumer_tag:[35,2,4,30,31,6,19],raw_messag:[2,4,31],except:[0,12,22,14,2,4,36,15,28,17,29,42,9,35],shortcut:[21,42],"0x10252e590":10,add:[14,35],codec:35,primit:[14,19],schedul:[12,36,17],sslerror:35,logger:[21,37,1,35],match:[14,20,4,35,19],default_encod:3,build:[14,40],opt:40,applic:[14,32,23,9,19],dataerror:35,pyamqplib:[12,42,4,8,17],maybechannelbound:18,format:[6,35],preserv:19,multiprocess:24,do_restor:2,alias:[42,27,8,35],include_password:35,pop:10,amq:[20,2,4],world:35,bit:15,characterist:15,recurs:15,get_item:6,reply_exchang:32,insert:10,verify_connect:4,like:[14,21,15,19],specif:[22,4,16,19,41,42,20],deprec:35,rajith:19,arbitrari:[28,22,41,35],manual:[14,22,19],resolv:4,integ:[35,19],server:[22,23,35,14,2,4,19,41,42],basic_recov:2,from_dict:41,"boolean":15,necessari:35,either:[14,29,19],if_unusu:2,choic:15,popular:14,async:[32,12,35,14,17,7],"function":[11,33,12,35,27,17,29,7,8,19,42],nice:22,manag:[2,35],two:[21,22,35,14,29,19,41],underli:42,node:[32,17],exceed:[0,29,42,35],queue_nam:21,easy_instal:14,acknowledg:[0,22,23,2,38,19,42],interv:[2,29,42],anyjson:35,some:[14,15,35],back:[2,23,4,40],self:[21,9,29,42,38],abstractchannel:2,on_decode_error:[22,35],intern:4,sure:[29,7],restore_unack:2,guarante:2,log_queu:21,librari:[21,40,15,19],registri:[17,35,27,9],loglevel:37,guid:[12,26],lead:35,collect:2,queue_unbind:40,leak:35,avoid:[41,22,35],get_nowait:38,octet:[41,22],subclass:[41,2,22],cast:32,bst:35,retri:[29,42],leav:[35,19],unit:14,slash:35,condit:[4,35],postencod:23,notabl:15,pypika:[12,31,17],refer:[16,12,35,15,17],preload:42,ensure_drain_ev:31,object:[21,22,24,35,15,18,19,42,9,10],idiomat:14,emul:2,reach:29,ident:[14,37,19],usag:[42,35],broker:[22,35,2,4,31,19,41,42],step:29,prefetch:[41,2,22],maybe_bind:[18,19],although:[41,22,19],found:19,peer:[41,22,4],"__name__":21,post:19,emit:[1,35],"super":31,pycouchdb:[33,17,12],describ:[9,6,19],plug:14,comparison:[14,12],about:[14,25,19],central:9,socket:[21,42,35],constraint:15,class_id:4,bound_exchang:[14,19],slightli:21,delivery_mod:[22,35,28,40,19,41],page:12,create_message_view:33,includ:[15,8,35],disadvantag:15,constructor:[32,2,42],discard:[2,23,4,42],errback:[29,42],disabl:[22,35,14,2,38,41,42],block:[21,38,42,7,35],everi:[14,29,15,35],topicexchang:20,qsize:38,"float":15,encod:[21,12,23,22,14,3,4,15,27,28,17,19,41,9,35],domain:[14,6,19],terminolog:[14,12],three:9,down:[41,22,4],pair:[42,10,19],read_timeout:4,cancel_by_queu:[41,22,35],been:[0,22,23,35,14,2,28,41,42],contrib:35,exchangetyp:20,your:[14,16,35,15,19],durabl:[14,2,19,41,42,20],per:[15,35],rkei:[20,15],log:[21,12,35,4,17,1],wai:42,compatordereddict:10,transfer:15,support:[28,22,9,14,2,35,15,16,19,41,20],question:[12,25],iter:[6,10],fast:15,custom:[14,35,15,19],avail:[22,9,14,35,27,19,41,42],lost:[35,19],singl:[21,22,35,29,19,42,20],interfac:[21,12,23,35,14,26,38,17,41,42,20],tracker:[14,12],myqueu:21,safe_repr:3,stai:14,slight:15,treat:19,fork:35,properli:[35,19],simplejson:15,handle_messag:32,channellimitexceed:[0,42],tupl:[9,23,20,29],recommend:[42,35,19],keyerror:35,taken:24,sqlalchemi:[14,35],gain:15,newer:29,larger:15,beat:32,shamelessli:19,line:42,buf:31,bug:[14,12,29,35],sent:[22,23,35,14,2,15,19,41],count:2,reappli:42,immedi:[22,31,28,19,41,42],utf:9,attr:29,consist:[14,19],possibl:[14,9,35],whether:19,best:15,caller:42,maximum:[0,29,42],forcefulli:35,"____________":6,record:1,good:15,gevent:[7,35],limit:[0,32,22,2,35,15,28,41,42],virtual_host:[16,21,42,40,35],basic_consum:[2,4,30,31,6,40],otherwis:[41,22,19],problem:[14,35],delimit:19,nullhandl:1,"catch":29,featur:[14,12,28,22],add_consum:41,creat:[21,32,35,16,18,6,19,42],create_produc:28,myq:35,cover:19,"abstract":[2,18],filenam:21,proven:14,repres:9,channelpool:[42,35],cure:19,resolve_transport:8,file:[14,42,40,15],behavior:35,shut:4,exist:[14,6,35,19],tmp:14,probabl:[40,15],again:[29,42],active_queu:30,wast:15,amqp:[21,12,22,14,4,35,31,16,18,6,40,28,19,41,9],content_encod:[22,23,9,2,4,15,31,28,40,19,41],buffer:[21,17,42,38],titl:39,excel:21,exitprior:24,virtual:[12,35,14,2,36,16,17,42,20],flavio:5,vendor:14,my_pictur:15,subclient:30,declar:[22,35,14,2,28,19,41,38],lookup:[20,35],get_encod:27,rememb:[42,10],better:15,test:[14,35],you:[21,22,23,9,14,2,35,15,16,40,19,42],reply_text:4,queu:14,deseri:[21,2,23,15,9],news_exchang:19,relat:35,star:[14,19],wildcard:[20,19],fulli:8,mongodb:[14,12,35,5,17],why:25,introduc:35,get_transport_cl:[42,8],setup_log:37,queri:6,veri:29,dump_messag:40,pool:[28,12,42,35,17],legal:6,colliss:29,receiv:[21,22,23,14,4,26,16,19,41,38],open_fil:29,longer:35,filterfunc:41,directori:[14,40,35],reliabl:14,gethostnam:21,rule:4,interval_start:[29,42],brokerst:2,ignor:[41,22],dot:[14,20,19],potenti:[41,22,35],time:[0,21,29,42,35],reply_to:32,dump:29,hello:35,cached_properti:29},objtypes:{"0":"py:module","1":"py:method","2":"py:data","3":"py:class","4":"py:function","5":"py:attribute","6":"py:exception","7":"py:classmethod"},titles:["kombu.exceptions","Logging - kombu.utils.log","kombu.transport.virtual","String Encoding - kombu.utils.encoding","kombu.transport.pyamqplib","kombu.transport.mongodb","kombu.transport.SQS","Async Utilities - kombu.syn","kombu.transport","kombu.serialization","Compat. utilities - kombu.utils.compat","kombu.utils.functional","Kombu Documentation","kombu.transport.memory","kombu - AMQP Messaging Framework for Python","Serialization","Connections and transports","API Reference","kombu.compression","kombu.entity","kombu.transport.virtual.exchange","Simple Interface","kombu.messaging","kombu.transport.base","Finalize - kombu.utils.finalize","Frequently Asked Questions","User Guide","kombu.compression","General Pools - kombu.pools","Utilities - kombu.utils","kombu.transport.pyredis","kombu.transport.pypika","kombu.pidbox","kombu.transport.pycouchdb","kombu.transport.beanstalk","Change history","kombu.transport.virtual.scheduling","Debugging - kombu.utils.debug","kombu.simple","&lt;no title&gt;","pylibrabbitmq - Python bindings to librabbitmq-c","kombu.compat","kombu.connection"],objnames:{"0":"Python module","1":"Python method","2":"Python data","3":"Python class","4":"Python function","5":"Python attribute","6":"Python exception","7":"Python class method"},filenames:["reference/kombu.exceptions","reference/kombu.utils.log","reference/kombu.transport.virtual","reference/kombu.utils.encoding","reference/kombu.transport.pyamqplib","reference/kombu.transport.mongodb","reference/kombu.transport.SQS","reference/kombu.syn","reference/kombu.transport","reference/kombu.serialization","reference/kombu.utils.compat","reference/kombu.utils.functional","index","reference/kombu.transport.memory","introduction","userguide/serialization","userguide/connections","reference/index","reference/kombu.abstract","reference/kombu.entity","reference/kombu.transport.virtual.exchange","userguide/simple","reference/kombu.messaging","reference/kombu.transport.base","reference/kombu.utils.finalize","faq","userguide/index","reference/kombu.compression","reference/kombu.pools","reference/kombu.utils","reference/kombu.transport.pyredis","reference/kombu.transport.pypika","reference/kombu.pidbox","reference/kombu.transport.pycouchdb","reference/kombu.transport.beanstalk","changelog","reference/kombu.transport.virtual.scheduling","reference/kombu.utils.debug","reference/kombu.simple","reference/kombu.transport.librabbitmq","build/pylibrabbitmq/README","reference/kombu.compat","reference/kombu.connection"]}) \ No newline at end of file
diff --git a/userguide/connections.html b/userguide/connections.html
index 22224e31..7ee5ba12 100644
--- a/userguide/connections.html
+++ b/userguide/connections.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Connections and transports &mdash; Kombu v1.3.1 documentation</title>
+ <title>Connections and transports &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="User Guide" href="index.html" />
<link rel="next" title="Simple Interface" href="simple.html" />
<link rel="prev" title="User Guide" href="index.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="index.html" title="User Guide"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -139,7 +139,7 @@ for more information and a full list of the arguments supported.</p>
<li class="right" >
<a href="index.html" title="User Guide"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
diff --git a/userguide/index.html b/userguide/index.html
index 393749ca..8d381111 100644
--- a/userguide/index.html
+++ b/userguide/index.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>User Guide &mdash; Kombu v1.3.1 documentation</title>
+ <title>User Guide &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="next" title="Connections and transports" href="connections.html" />
<link rel="prev" title="kombu - AMQP Messaging Framework for Python" href="../introduction.html" />
</head>
@@ -41,7 +41,7 @@
<li class="right" >
<a href="../introduction.html" title="kombu - AMQP Messaging Framework for Python"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -58,7 +58,7 @@
<tbody valign="top">
<tr class="field"><th class="field-name">Release:</th><td class="field-body">1.3</td>
</tr>
-<tr class="field"><th class="field-name">Date:</th><td class="field-body">September 07, 2011</td>
+<tr class="field"><th class="field-name">Date:</th><td class="field-body">September 12, 2011</td>
</tr>
</tbody>
</table>
@@ -129,7 +129,7 @@
<li class="right" >
<a href="../introduction.html" title="kombu - AMQP Messaging Framework for Python"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
diff --git a/userguide/serialization.html b/userguide/serialization.html
index 34149477..91735565 100644
--- a/userguide/serialization.html
+++ b/userguide/serialization.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Serialization &mdash; Kombu v1.3.1 documentation</title>
+ <title>Serialization &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="User Guide" href="index.html" />
<link rel="next" title="Frequently Asked Questions" href="../faq.html" />
<link rel="prev" title="Simple Interface" href="simple.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="simple.html" title="Simple Interface"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -193,7 +193,7 @@ for the raw data:</p>
<li class="right" >
<a href="simple.html" title="Simple Interface"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
diff --git a/userguide/simple.html b/userguide/simple.html
index 4b04c229..64ea1516 100644
--- a/userguide/simple.html
+++ b/userguide/simple.html
@@ -6,13 +6,13 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Simple Interface &mdash; Kombu v1.3.1 documentation</title>
+ <title>Simple Interface &mdash; Kombu v1.3.2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '1.3.1',
+ VERSION: '1.3.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <link rel="top" title="Kombu v1.3.1 documentation" href="../index.html" />
+ <link rel="top" title="Kombu v1.3.2 documentation" href="../index.html" />
<link rel="up" title="User Guide" href="index.html" />
<link rel="next" title="Serialization" href="serialization.html" />
<link rel="prev" title="Connections and transports" href="connections.html" />
@@ -42,7 +42,7 @@
<li class="right" >
<a href="connections.html" title="Connections and transports"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -218,7 +218,7 @@ to produce and consume logging messages:</p>
<li class="right" >
<a href="connections.html" title="Connections and transports"
>previous</a> |</li>
- <li><a href="../index.html">Kombu v1.3.1 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu v1.3.2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>