summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-06-06 14:52:02 +0100
committerAsk Solem <ask@celeryproject.org>2012-06-06 14:52:02 +0100
commit0b7736c3bc313c03dca5b04f1df35b68c699a90b (patch)
tree736c5c6a0fc259be4f7f27a925ba469baa925947
parent66b1efe3f9189828bb5edbc7552489d1957eee35 (diff)
downloadkombu-gh-pages.tar.gz
Rendered documentation for Github Pages.gh-pages
-rw-r--r--_sources/changelog.txt48
-rw-r--r--_sources/introduction.txt33
-rw-r--r--_static/basic.css4
-rw-r--r--changelog.html166
-rw-r--r--faq.html12
-rw-r--r--genindex.html484
-rw-r--r--index.html17
-rw-r--r--introduction.html83
-rw-r--r--objects.invbin9625 -> 10348 bytes
-rw-r--r--py-modindex.html12
-rw-r--r--reference/index.html16
-rw-r--r--reference/kombu.abstract.html12
-rw-r--r--reference/kombu.clocks.html12
-rw-r--r--reference/kombu.common.html14
-rw-r--r--reference/kombu.compat.html14
-rw-r--r--reference/kombu.compression.html12
-rw-r--r--reference/kombu.connection.html32
-rw-r--r--reference/kombu.entity.html14
-rw-r--r--reference/kombu.exceptions.html12
-rw-r--r--reference/kombu.log.html12
-rw-r--r--reference/kombu.messaging.html12
-rw-r--r--reference/kombu.mixins.html33
-rw-r--r--reference/kombu.pidbox.html12
-rw-r--r--reference/kombu.pools.html159
-rw-r--r--reference/kombu.serialization.html14
-rw-r--r--reference/kombu.simple.html12
-rw-r--r--reference/kombu.syn.html12
-rw-r--r--reference/kombu.transport.SQS.html12
-rw-r--r--reference/kombu.transport.amqplib.html57
-rw-r--r--reference/kombu.transport.base.html12
-rw-r--r--reference/kombu.transport.beanstalk.html12
-rw-r--r--reference/kombu.transport.couchdb.html12
-rw-r--r--reference/kombu.transport.django.html12
-rw-r--r--reference/kombu.transport.django.management.commands.clean_kombu_messages.html12
-rw-r--r--reference/kombu.transport.django.managers.html12
-rw-r--r--reference/kombu.transport.django.models.html16
-rw-r--r--reference/kombu.transport.html12
-rw-r--r--reference/kombu.transport.librabbitmq.html279
-rw-r--r--reference/kombu.transport.memory.html14
-rw-r--r--reference/kombu.transport.mongodb.html12
-rw-r--r--reference/kombu.transport.pika.html12
-rw-r--r--reference/kombu.transport.pika2.html12
-rw-r--r--reference/kombu.transport.redis.html255
-rw-r--r--reference/kombu.transport.sqlalchemy.html12
-rw-r--r--reference/kombu.transport.sqlalchemy.models.html12
-rw-r--r--reference/kombu.transport.virtual.exchange.html12
-rw-r--r--reference/kombu.transport.virtual.html35
-rw-r--r--reference/kombu.transport.virtual.scheduling.html12
-rw-r--r--reference/kombu.utils.compat.html14
-rw-r--r--reference/kombu.utils.debug.html12
-rw-r--r--reference/kombu.utils.encoding.html12
-rw-r--r--reference/kombu.utils.finalize.html12
-rw-r--r--reference/kombu.utils.functional.html12
-rw-r--r--reference/kombu.utils.html14
-rw-r--r--reference/kombu.utils.limits.html12
-rw-r--r--search.html12
-rw-r--r--searchindex.js2
-rw-r--r--userguide/connections.html12
-rw-r--r--userguide/consumers.html25
-rw-r--r--userguide/examples.html12
-rw-r--r--userguide/index.html16
-rw-r--r--userguide/introduction.html12
-rw-r--r--userguide/pools.html42
-rw-r--r--userguide/producers.html12
-rw-r--r--userguide/serialization.html12
-rw-r--r--userguide/simple.html12
66 files changed, 1742 insertions, 614 deletions
diff --git a/_sources/changelog.txt b/_sources/changelog.txt
index 9624fabf..c77448c8 100644
--- a/_sources/changelog.txt
+++ b/_sources/changelog.txt
@@ -2,6 +2,54 @@
Change history
================
+.. _version-2.1.7:
+
+2.1.7
+=====
+:release-date: 2012-04-27 6:00 P.M BST
+
+* compat consumerset now accepts optional channel argument.
+
+.. _version-2.1.6:
+
+2.1.6
+=====
+:release-date: 2012-04-23 1:30 P.M BST
+
+* SQLAlchemy transport was not working correctly after URL parser change.
+
+* maybe_declare now stores cached declarations per underlying connection
+ instead of globally, in the rare case that data disappears from the
+ broker after connection loss.
+
+* Django: Added South migrations.
+
+ Contributed by Joseph Crosland.
+
+.. _version-2.1.5:
+
+2.1.5
+=====
+:release-date: 2012-04-13 3:30 P.M BST
+
+* The url parser removed more than the first leading slash (Issue #121).
+
+* SQLAlchemy: Can now specify url using + separator
+
+ Example::
+
+ BrokerConnection("sqla+mysql://localhost/db")
+
+* Better support for anonymous queues (Issue #116).
+
+ Contributed by Michael Barrett.
+
+* ``Connection.as_uri`` now quotes url parts (Issue #117).
+
+* Beanstalk: Can now set message TTR as a message property.
+
+ Contributed by Andrii Kostenko
+
.. _version-2.1.4:
2.1.4
diff --git a/_sources/introduction.txt b/_sources/introduction.txt
index e03abecb..1b9e4ab8 100644
--- a/_sources/introduction.txt
+++ b/_sources/introduction.txt
@@ -2,7 +2,7 @@
kombu - Messaging Framework for Python
#############################################
-:Version: 2.1.3
+:Version: 2.2.0rc2
Synopsis
========
@@ -27,12 +27,18 @@ Features
* AMQP transports for both the `amqplib`_ (sync) and
`pika`_ (sync + async) clients.
+ * Fast AMQP transport using `librabbitmq`_, written in C.
+
+ This is automatically enabled if :mod:`librabbitmq` is installed::
+
+ $ pip install librabbitmq
+
* Virtual transports makes it really easy to add support for non-AMQP
transports. There is already built-in support for `Redis`_,
`Beanstalk`_, `Amazon SQS`_, `CouchDB`_, and `MongoDB`_.
- * SQLAlchemy and Django ORM transports exists as plug-ins (
- `kombu-sqlalchemy`_ and `django-kombu`_).
+ * You can also use the SQLAlchemy and Django ORM transports to
+ use a database as the broker.
* In-memory transport for unit testing.
@@ -67,9 +73,8 @@ and the `Wikipedia article about AMQP`_.
.. _`amqplib`: http://barryp.org/software/py-amqplib/
.. _`pika`: http://github.com/pika/pika
.. _`Wikipedia article about AMQP`: http://en.wikipedia.org/wiki/AMQP
-.. _`kombu-sqlalchemy`: http://github.com/ask/kombu-sqlalchemy/
-.. _`django-kombu`: http://github.com/ask/django-kombu/
.. _`carrot`: http://pypi.python.org/pypi/carrot/
+.. _`librabbitmq`: http://pypi.python.org/pypi/librabbitmq
Transport Comparison
@@ -82,18 +87,22 @@ Transport Comparison
+---------------+----------+------------+------------+---------------+
| *pika* | Native | Yes | Yes | Yes |
+---------------+----------+------------+------------+---------------+
-| *redis* | Virtual | Yes | Yes [#f1]_ | Yes (PUB/SUB) |
+| *redis* | Virtual | Yes | Yes | Yes (PUB/SUB) |
++---------------+----------+------------+------------+---------------+
+| *mongodb* | Virtual | Yes | Yes | Yes |
+---------------+----------+------------+------------+---------------+
| *beanstalk* | Virtual | Yes | Yes [#f1]_ | No |
+---------------+----------+------------+------------+---------------+
| *SQS* | Virtual | Yes | Yes [#f1]_ | Yes [#f2]_ |
+---------------+----------+------------+------------+---------------+
-| *mongodb* | Virtual | Yes | Yes [#f1]_ | Yes |
-+---------------+----------+------------+------------+---------------+
| *couchdb* | Virtual | Yes | Yes [#f1]_ | No |
+---------------+----------+------------+------------+---------------+
| *in-memory* | Virtual | Yes | Yes [#f1]_ | No |
+---------------+----------+------------+------------+---------------+
+| *django* | Virtual | Yes | Yes [#f1]_ | No |
++---------------+----------+------------+------------+---------------+
+| *sqlalchemy* | Virtual | Yes | Yes [#f1]_ | No |
++---------------+----------+------------+------------+---------------+
.. [#f1] Declarations only kept in memory, so exchanges/queues
@@ -107,9 +116,9 @@ Transport Comparison
Documentation
-------------
-Kombu is using Sphinx, and the latest documentation is available at GitHub:
+Kombu is using Sphinx, and the latest documentation can be found here:
- http://ask.github.com/kombu
+ http://kombu.readthedocs.org/
Quick overview
--------------
@@ -294,12 +303,12 @@ Bug tracker
===========
If you have any suggestions, bug reports or annoyances please report them
-to our issue tracker at http://github.com/ask/kombu/issues/
+to our issue tracker at http://github.com/celery/kombu/issues/
Contributing
============
-Development of `Kombu` happens at Github: http://github.com/ask/kombu
+Development of `Kombu` happens at Github: http://github.com/celery/kombu
You are highly encouraged to participate in the development. If you don't
like Github (for some reason) you're welcome to send regular patches.
diff --git a/_static/basic.css b/_static/basic.css
index f0379f35..43e8bafa 100644
--- a/_static/basic.css
+++ b/_static/basic.css
@@ -79,11 +79,11 @@ div.sphinxsidebar input {
font-size: 1em;
}
-div.sphinxsidebar input[type="text"] {
+div.sphinxsidebar #searchbox input[type="text"] {
width: 170px;
}
-div.sphinxsidebar input[type="submit"] {
+div.sphinxsidebar #searchbox input[type="submit"] {
width: 30px;
}
diff --git a/changelog.html b/changelog.html
index a59996ae..4f7ef398 100644
--- a/changelog.html
+++ b/changelog.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Change history &mdash; Kombu 2.1.3 documentation</title>
+ <title>Change history &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="index.html" />
<link rel="prev" title="kombu.utils.url" href="reference/kombu.utils.url.html" />
</head>
<body>
@@ -40,7 +40,7 @@
<li class="right" >
<a href="reference/kombu.utils.url.html" title="kombu.utils.url"
accesskey="P">previous</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -51,8 +51,81 @@
<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-2-1-7">
+<span id="id1"></span><h2>2.1.7<a class="headerlink" href="#version-2-1-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" />
+<tbody valign="top">
+<tr class="field-odd field"><th class="field-name">release-date:</th><td class="field-body">2012-04-27 6:00 P.M BST</td>
+</tr>
+</tbody>
+</table>
+<ul class="simple">
+<li>compat consumerset now accepts optional channel argument.</li>
+</ul>
+</div>
+<div class="section" id="version-2-1-6">
+<span id="id2"></span><h2>2.1.6<a class="headerlink" href="#version-2-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" />
+<tbody valign="top">
+<tr class="field-odd field"><th class="field-name">release-date:</th><td class="field-body">2012-04-23 1:30 P.M BST</td>
+</tr>
+</tbody>
+</table>
+<ul>
+<li><p class="first">SQLAlchemy transport was not working correctly after URL parser change.</p>
+</li>
+<li><p class="first">maybe_declare now stores cached declarations per underlying connection
+instead of globally, in the rare case that data disappears from the
+broker after connection loss.</p>
+</li>
+<li><p class="first">Django: Added South migrations.</p>
+<blockquote>
+<div><p>Contributed by Joseph Crosland.</p>
+</div></blockquote>
+</li>
+</ul>
+</div>
+<div class="section" id="version-2-1-5">
+<span id="id3"></span><h2>2.1.5<a class="headerlink" href="#version-2-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" />
+<tbody valign="top">
+<tr class="field-odd field"><th class="field-name">release-date:</th><td class="field-body">2012-04-13 3:30 P.M BST</td>
+</tr>
+</tbody>
+</table>
+<ul>
+<li><p class="first">The url parser removed more than the first leading slash (Issue #121).</p>
+</li>
+<li><p class="first">SQLAlchemy: Can now specify url using + separator</p>
+<blockquote>
+<div><p>Example:</p>
+<div class="highlight-python"><div class="highlight"><pre><span class="n">BrokerConnection</span><span class="p">(</span><span class="s">&quot;sqla+mysql://localhost/db&quot;</span><span class="p">)</span>
+</pre></div>
+</div>
+</div></blockquote>
+</li>
+<li><p class="first">Better support for anonymous queues (Issue #116).</p>
+<blockquote>
+<div><p>Contributed by Michael Barrett.</p>
+</div></blockquote>
+</li>
+<li><p class="first"><tt class="docutils literal"><span class="pre">Connection.as_uri</span></tt> now quotes url parts (Issue #117).</p>
+</li>
+<li><p class="first">Beanstalk: Can now set message TTR as a message property.</p>
+<blockquote>
+<div><p>Contributed by Andrii Kostenko</p>
+</div></blockquote>
+</li>
+</ul>
+</div>
<div class="section" id="version-2-1-4">
-<span id="id1"></span><h2>2.1.4<a class="headerlink" href="#version-2-1-4" title="Permalink to this headline">¶</a></h2>
+<span id="id4"></span><h2>2.1.4<a class="headerlink" href="#version-2-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" />
@@ -100,7 +173,7 @@ being consumed from disappears.</p>
</ul>
</div>
<div class="section" id="version-2-1-3">
-<span id="id2"></span><h2>2.1.3<a class="headerlink" href="#version-2-1-3" title="Permalink to this headline">¶</a></h2>
+<span id="id5"></span><h2>2.1.3<a class="headerlink" href="#version-2-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" />
@@ -117,7 +190,7 @@ being consumed from disappears.</p>
</ul>
</div>
<div class="section" id="version-2-1-2">
-<span id="id3"></span><h2>2.1.2<a class="headerlink" href="#version-2-1-2" title="Permalink to this headline">¶</a></h2>
+<span id="id6"></span><h2>2.1.2<a class="headerlink" href="#version-2-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" />
@@ -133,7 +206,7 @@ being consumed from disappears.</p>
</ul>
</div>
<div class="section" id="version-2-1-1">
-<span id="id4"></span><h2>2.1.1<a class="headerlink" href="#version-2-1-1" title="Permalink to this headline">¶</a></h2>
+<span id="id7"></span><h2>2.1.1<a class="headerlink" href="#version-2-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" />
@@ -163,7 +236,7 @@ if it is not connected, as this resulted in an annoying warning.</p>
</ul>
</div>
<div class="section" id="version-2-1-0">
-<span id="id5"></span><h2>2.1.0<a class="headerlink" href="#version-2-1-0" title="Permalink to this headline">¶</a></h2>
+<span id="id8"></span><h2>2.1.0<a class="headerlink" href="#version-2-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" />
@@ -212,7 +285,7 @@ can also be set using the <tt class="docutils literal"><span class="pre">KOMBU_P
</ul>
</div>
<div class="section" id="version-2-0-0">
-<span id="id6"></span><h2>2.0.0<a class="headerlink" href="#version-2-0-0" title="Permalink to this headline">¶</a></h2>
+<span id="id9"></span><h2>2.0.0<a class="headerlink" href="#version-2-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" />
@@ -326,7 +399,7 @@ that should be declared before the message is published.</p>
</div>
</div>
<div class="section" id="version-1-5-1">
-<span id="id7"></span><h2>1.5.1<a class="headerlink" href="#version-1-5-1" title="Permalink to this headline">¶</a></h2>
+<span id="id10"></span><h2>1.5.1<a class="headerlink" href="#version-1-5-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" />
@@ -356,7 +429,7 @@ One example would be to disable the Pickle serializer:</p>
</ul>
</div>
<div class="section" id="version-1-5-0">
-<span id="id8"></span><h2>1.5.0<a class="headerlink" href="#version-1-5-0" title="Permalink to this headline">¶</a></h2>
+<span id="id11"></span><h2>1.5.0<a class="headerlink" href="#version-1-5-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" />
@@ -430,7 +503,7 @@ were not yet properly initialized (Issue #78).</p>
</ul>
</div>
<div class="section" id="version-1-4-3">
-<span id="id9"></span><h2>1.4.3<a class="headerlink" href="#version-1-4-3" title="Permalink to this headline">¶</a></h2>
+<span id="id12"></span><h2>1.4.3<a class="headerlink" href="#version-1-4-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" />
@@ -444,7 +517,7 @@ were not yet properly initialized (Issue #78).</p>
</ul>
</div>
<div class="section" id="version-1-4-2">
-<span id="id10"></span><h2>1.4.2<a class="headerlink" href="#version-1-4-2" title="Permalink to this headline">¶</a></h2>
+<span id="id13"></span><h2>1.4.2<a class="headerlink" href="#version-1-4-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" />
@@ -484,7 +557,7 @@ by <cite>on_decode_error</cite> (Issue #72)</p>
</ul>
</div>
<div class="section" id="version-1-4-1">
-<span id="id11"></span><h2>1.4.1<a class="headerlink" href="#version-1-4-1" title="Permalink to this headline">¶</a></h2>
+<span id="id14"></span><h2>1.4.1<a class="headerlink" href="#version-1-4-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" />
@@ -501,7 +574,7 @@ established for every acquire.</li>
</ul>
</div>
<div class="section" id="version-1-4-0">
-<span id="id12"></span><h2>1.4.0<a class="headerlink" href="#version-1-4-0" title="Permalink to this headline">¶</a></h2>
+<span id="id15"></span><h2>1.4.0<a class="headerlink" href="#version-1-4-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" />
@@ -571,7 +644,7 @@ of Lamports logical clock.</p>
</ul>
</div>
<div class="section" id="version-1-3-5">
-<span id="id13"></span><h2>1.3.5<a class="headerlink" href="#version-1-3-5" title="Permalink to this headline">¶</a></h2>
+<span id="id16"></span><h2>1.3.5<a class="headerlink" href="#version-1-3-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" />
@@ -587,7 +660,7 @@ of Lamports logical clock.</p>
</ul>
</div>
<div class="section" id="version-1-3-4">
-<span id="id14"></span><h2>1.3.4<a class="headerlink" href="#version-1-3-4" title="Permalink to this headline">¶</a></h2>
+<span id="id17"></span><h2>1.3.4<a class="headerlink" href="#version-1-3-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" />
@@ -603,7 +676,7 @@ of Lamports logical clock.</p>
</ul>
</div>
<div class="section" id="version-1-3-3">
-<span id="id15"></span><h2>1.3.3<a class="headerlink" href="#version-1-3-3" title="Permalink to this headline">¶</a></h2>
+<span id="id18"></span><h2>1.3.3<a class="headerlink" href="#version-1-3-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" />
@@ -619,7 +692,7 @@ of Lamports logical clock.</p>
</ul>
</div>
<div class="section" id="version-1-3-2">
-<span id="id16"></span><h2>1.3.2<a class="headerlink" href="#version-1-3-2" title="Permalink to this headline">¶</a></h2>
+<span id="id19"></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" />
@@ -642,7 +715,7 @@ than the previous limit.</li>
</ul>
</div>
<div class="section" id="version-1-3-1">
-<span id="id17"></span><h2>1.3.1<a class="headerlink" href="#version-1-3-1" title="Permalink to this headline">¶</a></h2>
+<span id="id20"></span><h2>1.3.1<a class="headerlink" href="#version-1-3-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" />
@@ -674,7 +747,7 @@ also required by <tt class="xref py py-class docutils literal"><span class="pre"
</ul>
</div>
<div class="section" id="version-1-3-0">
-<span id="id18"></span><h2>1.3.0<a class="headerlink" href="#version-1-3-0" title="Permalink to this headline">¶</a></h2>
+<span id="id21"></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" />
@@ -791,7 +864,7 @@ attribute.</p>
</ul>
</div>
<div class="section" id="version-1-2-1">
-<span id="id19"></span><h2>1.2.1<a class="headerlink" href="#version-1-2-1" title="Permalink to this headline">¶</a></h2>
+<span id="id22"></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" />
@@ -841,7 +914,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="id20"></span><h2>1.2.0<a class="headerlink" href="#version-1-2-0" title="Permalink to this headline">¶</a></h2>
+<span id="id23"></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" />
@@ -862,7 +935,7 @@ arguments (Issue #48).</li>
</ul>
</div>
<div class="section" id="version-1-1-6">
-<span id="id21"></span><h2>1.1.6<a class="headerlink" href="#version-1-1-6" title="Permalink to this headline">¶</a></h2>
+<span id="id24"></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" />
@@ -896,7 +969,7 @@ error.</p>
</ul>
</div>
<div class="section" id="version-1-1-5">
-<span id="id22"></span><h2>1.1.5<a class="headerlink" href="#version-1-1-5" title="Permalink to this headline">¶</a></h2>
+<span id="id25"></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" />
@@ -910,7 +983,7 @@ error.</p>
</ul>
</div>
<div class="section" id="version-1-1-4">
-<span id="id23"></span><h2>1.1.4<a class="headerlink" href="#version-1-1-4" title="Permalink to this headline">¶</a></h2>
+<span id="id26"></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" />
@@ -946,7 +1019,7 @@ keyword argument.</p>
</ul>
</div>
<div class="section" id="version-1-1-3">
-<span id="id24"></span><h2>1.1.3<a class="headerlink" href="#version-1-1-3" title="Permalink to this headline">¶</a></h2>
+<span id="id27"></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" />
@@ -980,7 +1053,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="id25"></span><h2>1.1.2<a class="headerlink" href="#version-1-1-2" title="Permalink to this headline">¶</a></h2>
+<span id="id28"></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" />
@@ -1002,7 +1075,7 @@ issues.</p>
</ul>
</div>
<div class="section" id="version-1-1-1">
-<span id="id26"></span><h2>1.1.1<a class="headerlink" href="#version-1-1-1" title="Permalink to this headline">¶</a></h2>
+<span id="id29"></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" />
@@ -1017,7 +1090,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="id27"></span><h2>1.1.0<a class="headerlink" href="#version-1-1-0" title="Permalink to this headline">¶</a></h2>
+<span id="id30"></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" />
@@ -1027,7 +1100,7 @@ in Python 2.6+ (Issue #33). We now ship with our own LifoQueue.</li>
</tbody>
</table>
<div class="section" id="v110-important">
-<span id="id28"></span><h3>Important Notes<a class="headerlink" href="#v110-important" title="Permalink to this headline">¶</a></h3>
+<span id="id31"></span><h3>Important Notes<a class="headerlink" href="#v110-important" title="Permalink to this headline">¶</a></h3>
<ul>
<li><p class="first">Virtual transports: Message body is now base64 encoded by default
(Issue #27).</p>
@@ -1105,7 +1178,7 @@ log messages for connection related actions.</p>
</div>
</div>
<div class="section" id="version-1-0-7">
-<span id="id29"></span><h2>1.0.7<a class="headerlink" href="#version-1-0-7" title="Permalink to this headline">¶</a></h2>
+<span id="id32"></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" />
@@ -1155,8 +1228,8 @@ set (Issue #8).</p>
</li>
</ul>
</div>
-<div class="section" id="id30">
-<h2>1.0.6<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="id33">
+<h2>1.0.6<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h2>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -1202,7 +1275,7 @@ Channel open
</ul>
</div>
<div class="section" id="version-1-0-5">
-<span id="id31"></span><h2>1.0.5<a class="headerlink" href="#version-1-0-5" title="Permalink to this headline">¶</a></h2>
+<span id="id34"></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" />
@@ -1232,7 +1305,7 @@ consumer tag.</p>
</ul>
</div>
<div class="section" id="version-1-0-4">
-<span id="id32"></span><h2>1.0.4<a class="headerlink" href="#version-1-0-4" title="Permalink to this headline">¶</a></h2>
+<span id="id35"></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" />
@@ -1252,7 +1325,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-1-0-3">
-<span id="id33"></span><h2>1.0.3<a class="headerlink" href="#version-1-0-3" title="Permalink to this headline">¶</a></h2>
+<span id="id36"></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" />
@@ -1268,7 +1341,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-1-0-2">
-<span id="id34"></span><h2>1.0.2<a class="headerlink" href="#version-1-0-2" title="Permalink to this headline">¶</a></h2>
+<span id="id37"></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" />
@@ -1283,7 +1356,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-1-0-1">
-<span id="id35"></span><h2>1.0.1<a class="headerlink" href="#version-1-0-1" title="Permalink to this headline">¶</a></h2>
+<span id="id38"></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" />
@@ -1297,7 +1370,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-1-0-0">
-<span id="id36"></span><h2>1.0.0<a class="headerlink" href="#version-1-0-0" title="Permalink to this headline">¶</a></h2>
+<span id="id39"></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" />
@@ -1311,7 +1384,7 @@ there are no messages in the queue.</p>
</ul>
</div>
<div class="section" id="version-0-1-0">
-<span id="id37"></span><h2>0.1.0<a class="headerlink" href="#version-0-1-0" title="Permalink to this headline">¶</a></h2>
+<span id="id40"></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" />
@@ -1337,6 +1410,9 @@ 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-2-1-7">2.1.7</a></li>
+<li><a class="reference internal" href="#version-2-1-6">2.1.6</a></li>
+<li><a class="reference internal" href="#version-2-1-5">2.1.5</a></li>
<li><a class="reference internal" href="#version-2-1-4">2.1.4</a></li>
<li><a class="reference internal" href="#version-2-1-3">2.1.3</a></li>
<li><a class="reference internal" href="#version-2-1-2">2.1.2</a></li>
@@ -1377,7 +1453,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="#id30">1.0.6</a></li>
+<li><a class="reference internal" href="#id33">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>
@@ -1426,12 +1502,12 @@ there are no messages in the queue.</p>
<li class="right" >
<a href="reference/kombu.utils.url.html" title="kombu.utils.url"
>previous</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/faq.html b/faq.html
index 266874ee..7ebf29f3 100644
--- a/faq.html
+++ b/faq.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Frequently Asked Questions &mdash; Kombu 2.1.3 documentation</title>
+ <title>Frequently Asked Questions &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="index.html" />
<link rel="next" title="API Reference" href="reference/index.html" />
<link rel="prev" title="Serialization" href="userguide/serialization.html" />
</head>
@@ -44,7 +44,7 @@
<li class="right" >
<a href="userguide/serialization.html" title="Serialization"
accesskey="P">previous</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -132,12 +132,12 @@ so make sure your version is recent enough to support it.</p>
<li class="right" >
<a href="userguide/serialization.html" title="Serialization"
>previous</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/genindex.html b/genindex.html
index 062cdd0d..57df20a1 100644
--- a/genindex.html
+++ b/genindex.html
@@ -9,7 +9,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Index &mdash; Kombu 2.1.3 documentation</title>
+ <title>Index &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -17,7 +17,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -26,7 +26,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 2.1.3 documentation" href="index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="index.html" />
</head>
<body>
<div class="related">
@@ -38,7 +38,7 @@
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -113,6 +113,18 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.ack">(kombu.transport.librabbitmq.Connection.Message method)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.ack">(kombu.transport.redis.Channel.QoS method)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.ack">(kombu.transport.redis.Transport.Channel.QoS method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.ack">(kombu.transport.virtual.Message method)</a>
</dt>
@@ -127,6 +139,10 @@
<dd><dl>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.ack_log_error">(kombu.transport.librabbitmq.Connection.Message method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.ack_log_error">(kombu.transport.virtual.Message method)</a>
</dt>
@@ -141,6 +157,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.acknowledged">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.acknowledged">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -212,15 +232,29 @@
</dt>
- <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.append">append() (kombu.transport.virtual.QoS method)</a>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.append">append() (kombu.transport.redis.Channel.QoS method)</a>
</dt>
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.append">(kombu.transport.redis.Transport.Channel.QoS method)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.append">(kombu.transport.virtual.QoS method)</a>
+ </dt>
+
+ </dl></dd>
<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.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.MessageStateError.args">(kombu.transport.librabbitmq.Connection.Message.MessageStateError attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.MessageStateError.args">(kombu.transport.virtual.Message.MessageStateError attribute)</a>
</dt>
@@ -260,6 +294,10 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.auto_declare">(kombu.messaging.Producer attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.auto_declare">(kombu.pools.ProducerPool.Producer attribute)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.auto_delete">auto_delete (kombu.compat.Consumer attribute)</a>
@@ -499,6 +537,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.body">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.body">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -546,6 +588,10 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Consumer.callbacks">(kombu.messaging.Consumer attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.callbacks">(kombu.transport.librabbitmq.Connection attribute)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.abstract.html#kombu.abstract.MaybeChannelBound.can_cache_declaration">can_cache_declaration (kombu.abstract.MaybeChannelBound attribute)</a>
@@ -703,6 +749,10 @@
</dt>
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.channel">(kombu.pools.ProducerPool.Producer attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleBuffer.channel">(kombu.simple.SimpleBuffer attribute)</a>
</dt>
@@ -719,6 +769,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.channel">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.channel">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -768,6 +822,10 @@
</dl></dd>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS">Channel.QoS (class in kombu.transport.redis)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.Table">Channel.Table (class in kombu.transport.SQS)</a>
</dt>
@@ -852,10 +910,6 @@
</dt>
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.channels">channels (kombu.transport.librabbitmq.Connection attribute)</a>
- </dt>
-
-
<dt><a href="reference/kombu.transport.django.managers.html#kombu.transport.django.managers.MessageManager.cleanup">cleanup() (kombu.transport.django.managers.MessageManager method)</a>
</dt>
@@ -873,6 +927,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.BrokerState.clear">(kombu.transport.virtual.BrokerState method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict.clear">(kombu.utils.compat.CompatOrderedDict method)</a>
</dt>
@@ -911,9 +969,17 @@
</dt>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.client">(kombu.transport.redis.Channel.QoS attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.client">(kombu.transport.redis.Transport.Channel attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.client">(kombu.transport.redis.Transport.Channel.QoS attribute)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.clone">clone() (kombu.connection.BrokerConnection method)</a>
@@ -933,6 +999,10 @@
</dt>
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.close">(kombu.pools.ProducerPool.Producer method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleBuffer.close">(kombu.simple.SimpleBuffer method)</a>
</dt>
@@ -1061,8 +1131,6 @@
<dt><a href="reference/kombu.compression.html#kombu.compression.compress">compress() (in module kombu.compression)</a>
</dt>
- </dl></td>
- <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.Publisher.compression">compression (kombu.compat.Publisher attribute)</a>
</dt>
@@ -1072,16 +1140,32 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.compression">(kombu.messaging.Producer attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.compression">(kombu.pools.ProducerPool.Producer attribute)</a>
+ </dt>
+
</dl></dd>
+ </dl></td>
+ <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.connect">connect() (kombu.connection.BrokerConnection method)</a>
</dt>
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.connect">(kombu.transport.librabbitmq.Connection method)</a>
+ </dt>
+
+ </dl></dd>
<dt><a href="reference/kombu.mixins.html#kombu.mixins.ConsumerMixin.connect_max_retries">connect_max_retries (kombu.mixins.ConsumerMixin attribute)</a>
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.connected">connected (kombu.transport.librabbitmq.Connection attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Connection">Connection (class in kombu.transport.amqplib)</a>
</dt>
@@ -1116,6 +1200,10 @@
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Mailbox.connection">(kombu.pidbox.Mailbox attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.connection">(kombu.pools.ProducerPool.Producer 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>
@@ -1142,6 +1230,14 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message">Connection.Message (class in kombu.transport.librabbitmq)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.MessageStateError">Connection.Message.MessageStateError</a>
+ </dt>
+
+
<dt><a href="reference/kombu.connection.html#kombu.connection.BrokerConnection.connection_errors">connection_errors (kombu.connection.BrokerConnection attribute)</a>
</dt>
@@ -1297,6 +1393,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.content_encoding">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.content_encoding">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -1311,6 +1411,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.content_type">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.content_type">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -1418,6 +1522,10 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.declare">(kombu.messaging.Producer method)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.declare">(kombu.pools.ProducerPool.Producer method)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.serialization.html#kombu.serialization.decode">decode() (in module kombu.serialization)</a>
@@ -1433,6 +1541,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.decode">(kombu.transport.librabbitmq.Connection.Message method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.decode">(kombu.transport.virtual.Message method)</a>
</dt>
@@ -1561,6 +1673,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.delivery_info">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.delivery_info">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -1581,6 +1697,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.delivery_tag">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.delivery_tag">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -1823,6 +1943,16 @@
</dl></td>
<td style="width: 33%" valign="top"><dl>
+ <dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Transport.eventmap">eventmap() (kombu.transport.amqplib.Transport method)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.eventmap">(kombu.transport.librabbitmq.Transport method)</a>
+ </dt>
+
+ </dl></dd>
+
<dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Channel.events">events (kombu.transport.amqplib.Channel attribute)</a>
</dt>
@@ -1851,6 +1981,10 @@
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Mailbox.exchange">(kombu.pidbox.Mailbox attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.exchange">(kombu.pools.ProducerPool.Producer 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>
@@ -1963,6 +2097,10 @@
</dl></dd>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.fileno">fileno() (kombu.transport.librabbitmq.Connection method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.utils.limits.html#kombu.utils.limits.TokenBucket.fill_rate">fill_rate (kombu.utils.limits.TokenBucket attribute)</a>
</dt>
@@ -2003,6 +2141,16 @@
</dt>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.from_transport_options">from_transport_options (kombu.transport.redis.Channel attribute)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.from_transport_options">(kombu.transport.redis.Transport.Channel attribute)</a>
+ </dt>
+
+ </dl></dd>
+
<dt><a href="reference/kombu.utils.encoding.html#kombu.utils.encoding.from_utf8">from_utf8() (in module kombu.utils.encoding)</a>
</dt>
@@ -2090,12 +2238,12 @@
<dt><a href="reference/kombu.pools.html#kombu.pools.get_limit">get_limit() (in module kombu.pools)</a>
</dt>
- </dl></td>
- <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.log.html#kombu.log.LogMixin.get_logger">get_logger() (kombu.log.LogMixin method)</a>
</dt>
+ </dl></td>
+ <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.log.html#kombu.log.get_loglevel">get_loglevel() (in module kombu.log)</a>
</dt>
@@ -2107,6 +2255,10 @@
</dl></dd>
+ <dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Transport.get_manager">get_manager() (kombu.transport.amqplib.Transport method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.simple.html#kombu.simple.SimpleBuffer.get_nowait">get_nowait() (kombu.simple.SimpleBuffer method)</a>
</dt>
@@ -2193,6 +2345,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.handle_event">handle_event() (kombu.transport.redis.Transport method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.handle_message">handle_message() (kombu.pidbox.Node method)</a>
</dt>
@@ -2216,6 +2372,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.headers">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.headers">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -2232,6 +2392,12 @@
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.hostname">hostname (kombu.pidbox.Node attribute)</a>
</dt>
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.hostname">(kombu.transport.librabbitmq.Connection attribute)</a>
+ </dt>
+
+ </dl></dd>
</dl></td>
</tr></table>
@@ -2657,6 +2823,10 @@
<dt><a href="reference/kombu.compat.html#kombu.compat.Publisher.maybe_declare">(kombu.compat.Publisher method)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.maybe_declare">(kombu.pools.ProducerPool.Producer method)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.utils.html#kombu.utils.maybe_list">maybe_list() (in module kombu.utils)</a>
@@ -2704,6 +2874,12 @@
<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>
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.MessageStateError.message">(kombu.transport.librabbitmq.Connection.Message.MessageStateError attribute)</a>
+ </dt>
+
+ </dl></dd>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Channel.Message">Message (kombu.transport.virtual.Channel attribute)</a>
</dt>
@@ -2799,6 +2975,16 @@
</dt>
+ <dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Transport.nb_keep_draining">nb_keep_draining (kombu.transport.amqplib.Transport attribute)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.nb_keep_draining">(kombu.transport.librabbitmq.Transport attribute)</a>
+ </dt>
+
+ </dl></dd>
+
<dt><a href="reference/kombu.utils.html#kombu.utils.nested">nested() (in module kombu.utils)</a>
</dt>
@@ -2806,6 +2992,8 @@
<dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.new">new() (kombu.pools.ProducerPool method)</a>
</dt>
+ </dl></td>
+ <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.no_ack">no_ack (kombu.compat.Consumer attribute)</a>
</dt>
@@ -2832,8 +3020,6 @@
</dt>
</dl></dd>
- </dl></td>
- <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.no_ack_consumers">no_ack_consumers (kombu.transport.librabbitmq.Connection.Channel attribute)</a>
</dt>
@@ -2882,8 +3068,6 @@
<dt><a href="reference/kombu.mixins.html#kombu.mixins.ConsumerMixin.on_consume_ready">on_consume_ready() (kombu.mixins.ConsumerMixin method)</a>
</dt>
- </dl></td>
- <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.on_decode_error">on_decode_error (kombu.compat.Consumer attribute)</a>
</dt>
@@ -2898,6 +3082,8 @@
</dt>
</dl></dd>
+ </dl></td>
+ <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.mixins.html#kombu.mixins.ConsumerMixin.on_decode_error">on_decode_error() (kombu.mixins.ConsumerMixin method)</a>
</dt>
@@ -2907,6 +3093,34 @@
</dt>
+ <dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Transport.on_poll_init">on_poll_init() (kombu.transport.amqplib.Transport method)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.on_poll_init">(kombu.transport.librabbitmq.Transport method)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.on_poll_init">(kombu.transport.redis.Transport method)</a>
+ </dt>
+
+ </dl></dd>
+
+ <dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Transport.on_poll_start">on_poll_start() (kombu.transport.amqplib.Transport method)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.on_poll_start">(kombu.transport.librabbitmq.Transport method)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.on_poll_start">(kombu.transport.redis.Transport method)</a>
+ </dt>
+
+ </dl></dd>
+
<dt><a href="reference/kombu.compat.html#kombu.compat.Publisher.on_return">on_return (kombu.compat.Publisher attribute)</a>
</dt>
@@ -2915,6 +3129,10 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.on_return">(kombu.messaging.Producer attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.on_return">(kombu.pools.ProducerPool.Producer attribute)</a>
+ </dt>
+
</dl></dd>
</dl></td>
</tr></table>
@@ -2927,6 +3145,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.password">password (kombu.transport.librabbitmq.Connection attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.base.html#kombu.transport.base.Message.payload">payload (kombu.transport.base.Message attribute)</a>
</dt>
@@ -2936,6 +3158,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.payload">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.sqlalchemy.models.html#kombu.transport.sqlalchemy.models.Message.payload">(kombu.transport.sqlalchemy.models.Message attribute)</a>
</dt>
@@ -3011,6 +3237,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.port">port (kombu.transport.librabbitmq.Connection attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.prefetch_count">prefetch_count (kombu.transport.virtual.QoS attribute)</a>
</dt>
@@ -3028,8 +3258,6 @@
</dt>
</dl></dd>
- </dl></td>
- <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Channel.prepare_message">prepare_message() (kombu.transport.amqplib.Channel method)</a>
</dt>
@@ -3064,6 +3292,28 @@
</dt>
</dl></dd>
+ </dl></td>
+ <td style="width: 33%" valign="top"><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.priority">priority() (kombu.transport.redis.Channel method)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.priority">(kombu.transport.redis.Transport.Channel method)</a>
+ </dt>
+
+ </dl></dd>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.priority_steps">priority_steps (kombu.transport.redis.Channel attribute)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.priority_steps">(kombu.transport.redis.Transport.Channel attribute)</a>
+ </dt>
+
+ </dl></dd>
<dt><a href="reference/kombu.compat.html#kombu.compat.Consumer.process_next">process_next() (kombu.compat.Consumer method)</a>
</dt>
@@ -3083,17 +3333,15 @@
</dl></dd>
- <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer">Producer() (kombu.pools.ProducerPool method)</a>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Producer">Producer() (kombu.transport.librabbitmq.Connection.Channel method)</a>
</dt>
- <dd><dl>
-
- <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.Producer">(kombu.transport.librabbitmq.Connection.Channel method)</a>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool">ProducerPool (class in kombu.pools)</a>
</dt>
- </dl></dd>
- <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool">ProducerPool (class in kombu.pools)</a>
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer">ProducerPool.Producer (class in kombu.pools)</a>
</dt>
@@ -3110,6 +3358,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.properties">(kombu.transport.librabbitmq.Connection.Message attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.properties">(kombu.transport.virtual.Message attribute)</a>
</dt>
@@ -3128,6 +3380,10 @@
</dt>
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.publish">(kombu.pools.ProducerPool.Producer method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.django.managers.html#kombu.transport.django.managers.QueueManager.publish">(kombu.transport.django.managers.QueueManager method)</a>
</dt>
@@ -3441,6 +3697,10 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Consumer.recover">(kombu.messaging.Consumer method)</a>
</dt>
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Channel.recover">(kombu.transport.librabbitmq.Connection.Channel method)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.transport.django.html#kombu.transport.django.Channel.refresh_connection">refresh_connection() (kombu.transport.django.Channel method)</a>
@@ -3504,6 +3764,18 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.reject">(kombu.transport.librabbitmq.Connection.Message method)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.reject">(kombu.transport.redis.Channel.QoS method)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.reject">(kombu.transport.redis.Transport.Channel.QoS method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.reject">(kombu.transport.virtual.Message method)</a>
</dt>
@@ -3518,6 +3790,10 @@
<dd><dl>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.reject_log_error">(kombu.transport.librabbitmq.Connection.Message method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.reject_log_error">(kombu.transport.virtual.Message method)</a>
</dt>
@@ -3543,17 +3819,21 @@
<dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.release">(kombu.pools.ProducerPool method)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.release">(kombu.pools.ProducerPool.Producer method)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Node.reply">reply() (kombu.pidbox.Node method)</a>
</dt>
- </dl></td>
- <td style="width: 33%" valign="top"><dl>
<dt><a href="reference/kombu.pidbox.html#kombu.pidbox.Mailbox.reply_exchange">reply_exchange (kombu.pidbox.Mailbox attribute)</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>
@@ -3572,6 +3852,10 @@
</dt>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.Message.requeue">(kombu.transport.librabbitmq.Connection.Message method)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.Message.requeue">(kombu.transport.virtual.Message method)</a>
</dt>
@@ -3589,14 +3873,58 @@
</dt>
- <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.restore_unacked">restore_unacked() (kombu.transport.virtual.QoS method)</a>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.restore_at_shutdown">restore_at_shutdown (kombu.transport.redis.Channel.QoS attribute)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.restore_at_shutdown">(kombu.transport.redis.Transport.Channel.QoS attribute)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.restore_at_shutdown">(kombu.transport.virtual.QoS attribute)</a>
+ </dt>
+
+ </dl></dd>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.restore_by_tag">restore_by_tag() (kombu.transport.redis.Channel.QoS method)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.restore_by_tag">(kombu.transport.redis.Transport.Channel.QoS method)</a>
+ </dt>
+
+ </dl></dd>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.restore_unacked">restore_unacked() (kombu.transport.redis.Channel.QoS method)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.restore_unacked">(kombu.transport.redis.Transport.Channel.QoS method)</a>
</dt>
+
+ <dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.restore_unacked">(kombu.transport.virtual.QoS method)</a>
+ </dt>
+
+ </dl></dd>
<dt><a href="reference/kombu.transport.virtual.html#kombu.transport.virtual.QoS.restore_unacked_once">restore_unacked_once() (kombu.transport.virtual.QoS method)</a>
</dt>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.restore_visible">restore_visible() (kombu.transport.redis.Channel.QoS method)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.restore_visible">(kombu.transport.redis.Transport.Channel.QoS method)</a>
+ </dt>
+
+ </dl></dd>
+
<dt><a href="reference/kombu.utils.html#kombu.utils.retry_over_time">retry_over_time() (in module kombu.utils)</a>
</dt>
@@ -3625,6 +3953,10 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.revive">(kombu.messaging.Producer method)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.revive">(kombu.pools.ProducerPool.Producer method)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.Table.routes_for">routes_for() (kombu.transport.SQS.Channel.Table method)</a>
@@ -3653,6 +3985,10 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.routing_key">(kombu.messaging.Producer attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.routing_key">(kombu.pools.ProducerPool.Producer attribute)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.mixins.html#kombu.mixins.ConsumerMixin.run">run() (kombu.mixins.ConsumerMixin method)</a>
@@ -3735,6 +4071,10 @@
<dt><a href="reference/kombu.messaging.html#kombu.messaging.Producer.serializer">(kombu.messaging.Producer attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.pools.html#kombu.pools.ProducerPool.Producer.serializer">(kombu.pools.ProducerPool.Producer attribute)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.serialization.html#kombu.serialization.SerializerNotInstalled">SerializerNotInstalled</a>
@@ -3998,6 +4338,10 @@
</dt>
</dl></dd>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS">Transport.Channel.QoS (class in kombu.transport.redis)</a>
+ </dt>
+
</dl></td>
<td style="width: 33%" valign="top"><dl>
@@ -4039,6 +4383,10 @@
</dl></dd>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Transport.Connection.Message">Transport.Connection.Message (class in kombu.transport.librabbitmq)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.pika2.html#kombu.transport.pika2.Transport.Message">Transport.Message (class in kombu.transport.pika2)</a>
</dt>
@@ -4093,16 +4441,56 @@
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
- <dt><a href="reference/kombu.entity.html#kombu.entity.Queue.unbind">unbind() (kombu.entity.Queue method)</a>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.unacked_index_key">unacked_index_key (kombu.transport.redis.Channel attribute)</a>
</dt>
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.unacked_index_key">(kombu.transport.redis.Channel.QoS attribute)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.unacked_index_key">(kombu.transport.redis.Transport.Channel attribute)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.unacked_index_key">(kombu.transport.redis.Transport.Channel.QoS attribute)</a>
+ </dt>
+
+ </dl></dd>
- <dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict.update">update() (kombu.utils.compat.CompatOrderedDict method)</a>
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.unacked_key">unacked_key (kombu.transport.redis.Channel attribute)</a>
+ </dt>
+
+ <dd><dl>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.unacked_key">(kombu.transport.redis.Channel.QoS attribute)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.unacked_key">(kombu.transport.redis.Transport.Channel attribute)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.unacked_key">(kombu.transport.redis.Transport.Channel.QoS attribute)</a>
+ </dt>
+
+ </dl></dd>
+
+ <dt><a href="reference/kombu.entity.html#kombu.entity.Queue.unbind">unbind() (kombu.entity.Queue method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
+ <dt><a href="reference/kombu.utils.compat.html#kombu.utils.compat.CompatOrderedDict.update">update() (kombu.utils.compat.CompatOrderedDict method)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.userid">userid (kombu.transport.librabbitmq.Connection attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.common.html#kombu.common.uuid">uuid() (in module kombu.common)</a>
</dt>
@@ -4147,14 +4535,34 @@
</dl></dd>
- <dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.visibility_timeout">visibility_timeout (kombu.transport.SQS.Channel attribute)</a>
+ <dt><a href="reference/kombu.transport.librabbitmq.html#kombu.transport.librabbitmq.Connection.virtual_host">virtual_host (kombu.transport.librabbitmq.Connection attribute)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.visibility_timeout">visibility_timeout (kombu.transport.redis.Channel attribute)</a>
</dt>
<dd><dl>
+ <dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Channel.visibility_timeout">(kombu.transport.SQS.Channel attribute)</a>
+ </dt>
+
+
<dt><a href="reference/kombu.transport.SQS.html#kombu.transport.SQS.Transport.Channel.visibility_timeout">(kombu.transport.SQS.Transport.Channel attribute)</a>
</dt>
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Channel.QoS.visibility_timeout">(kombu.transport.redis.Channel.QoS attribute)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.visibility_timeout">(kombu.transport.redis.Transport.Channel attribute)</a>
+ </dt>
+
+
+ <dt><a href="reference/kombu.transport.redis.html#kombu.transport.redis.Transport.Channel.QoS.visibility_timeout">(kombu.transport.redis.Transport.Channel.QoS attribute)</a>
+ </dt>
+
</dl></dd>
<dt><a href="reference/kombu.transport.sqlalchemy.models.html#kombu.transport.sqlalchemy.models.Message.visible">visible (kombu.transport.sqlalchemy.models.Message attribute)</a>
@@ -4177,16 +4585,6 @@
</dl></dd>
- <dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Connection.wait_multi">wait_multi() (kombu.transport.amqplib.Connection method)</a>
- </dt>
-
- <dd><dl>
-
- <dt><a href="reference/kombu.transport.amqplib.html#kombu.transport.amqplib.Transport.Connection.wait_multi">(kombu.transport.amqplib.Transport.Connection method)</a>
- </dt>
-
- </dl></dd>
-
<dt><a href="reference/kombu.log.html#kombu.log.LogMixin.warn">warn() (kombu.log.LogMixin method)</a>
</dt>
@@ -4244,12 +4642,12 @@
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/index.html b/index.html
index 02ed0408..84317d29 100644
--- a/index.html
+++ b/index.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Kombu Documentation &mdash; Kombu 2.1.3 documentation</title>
+ <title>Kombu Documentation &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="#" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="#" />
<link rel="next" title="kombu - Messaging Framework for Python" href="introduction.html" />
</head>
<body>
@@ -40,7 +40,7 @@
<li class="right" >
<a href="introduction.html" title="kombu - Messaging Framework for Python"
accesskey="N">next</a> |</li>
- <li><a href="#">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="#">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -130,6 +130,9 @@
</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-2-1-7">2.1.7</a></li>
+<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-2-1-6">2.1.6</a></li>
+<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-2-1-5">2.1.5</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-2-1-4">2.1.4</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-2-1-3">2.1.3</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#version-2-1-2">2.1.2</a></li>
@@ -158,7 +161,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#id30">1.0.6</a></li>
+<li class="toctree-l2"><a class="reference internal" href="changelog.html#id33">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>
@@ -226,12 +229,12 @@
<li class="right" >
<a href="introduction.html" title="kombu - Messaging Framework for Python"
>next</a> |</li>
- <li><a href="#">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="#">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/introduction.html b/introduction.html
index 140fe99c..7419228a 100644
--- a/introduction.html
+++ b/introduction.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu - Messaging Framework for Python &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu - Messaging Framework for Python &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="index.html" />
<link rel="next" title="User Guide" href="userguide/index.html" />
<link rel="prev" title="Kombu Documentation" href="index.html" />
</head>
@@ -44,7 +44,7 @@
<li class="right" >
<a href="index.html" title="Kombu Documentation"
accesskey="P">previous</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -59,7 +59,7 @@
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
-<tr class="field-odd field"><th class="field-name">Version:</th><td class="field-body">2.1.3</td>
+<tr class="field-odd field"><th class="field-name">Version:</th><td class="field-body">2.2.0rc2</td>
</tr>
</tbody>
</table>
@@ -79,15 +79,24 @@ provide proven and tested solutions to common messaging problems.</p>
<li><p class="first">Allows application authors to support several message server
solutions by using pluggable transports.</p>
<blockquote>
-<div><ul class="simple">
-<li>AMQP transports for both the <a class="reference external" href="http://barryp.org/software/py-amqplib/">amqplib</a> (sync) and
-<a class="reference external" href="http://github.com/pika/pika">pika</a> (sync + async) clients.</li>
-<li>Virtual transports makes it really easy to add support for non-AMQP
+<div><ul>
+<li><p class="first">AMQP transports for both the <a class="reference external" href="http://barryp.org/software/py-amqplib/">amqplib</a> (sync) and
+<a class="reference external" href="http://github.com/pika/pika">pika</a> (sync + async) clients.</p>
+</li>
+<li><p class="first">Fast AMQP transport using <a class="reference external" href="http://pypi.python.org/pypi/librabbitmq">librabbitmq</a>, written in C.</p>
+<p>This is automatically enabled if <tt class="xref py py-mod docutils literal"><span class="pre">librabbitmq</span></tt> is installed:</p>
+<div class="highlight-python"><pre>$ pip install librabbitmq</pre>
+</div>
+</li>
+<li><p class="first">Virtual transports makes it really easy to add support for non-AMQP
transports. There is already built-in support for <a class="reference external" href="http://code.google.com/p/redis/">Redis</a>,
-<a class="reference external" href="http://kr.github.com/beanstalkd/">Beanstalk</a>, <a class="reference external" href="http://aws.amazon.com/sqs/">Amazon SQS</a>, <a class="reference external" href="http://couchdb.apache.org/">CouchDB</a>, and <a class="reference external" href="http://www.mongodb.org/">MongoDB</a>.</li>
-<li>SQLAlchemy and Django ORM transports exists as plug-ins (
-<a class="reference external" href="http://github.com/ask/kombu-sqlalchemy/">kombu-sqlalchemy</a> and <a class="reference external" href="http://github.com/ask/django-kombu/">django-kombu</a>).</li>
-<li>In-memory transport for unit testing.</li>
+<a class="reference external" href="http://kr.github.com/beanstalkd/">Beanstalk</a>, <a class="reference external" href="http://aws.amazon.com/sqs/">Amazon SQS</a>, <a class="reference external" href="http://couchdb.apache.org/">CouchDB</a>, and <a class="reference external" href="http://www.mongodb.org/">MongoDB</a>.</p>
+</li>
+<li><p class="first">You can also use the SQLAlchemy and Django ORM transports to
+use a database as the broker.</p>
+</li>
+<li><p class="first">In-memory transport for unit testing.</p>
+</li>
</ul>
</div></blockquote>
</li>
@@ -141,34 +150,46 @@ and the <a class="reference external" href="http://en.wikipedia.org/wiki/AMQP">W
<tr class="row-even"><td><em>redis</em></td>
<td>Virtual</td>
<td>Yes</td>
-<td>Yes <a class="footnote-reference" href="#f1" id="id1">[1]</a></td>
+<td>Yes</td>
<td>Yes (PUB/SUB)</td>
</tr>
-<tr class="row-odd"><td><em>beanstalk</em></td>
+<tr class="row-odd"><td><em>mongodb</em></td>
<td>Virtual</td>
<td>Yes</td>
-<td>Yes <a class="footnote-reference" href="#f1" id="id2">[1]</a></td>
+<td>Yes</td>
+<td>Yes</td>
+</tr>
+<tr class="row-even"><td><em>beanstalk</em></td>
+<td>Virtual</td>
+<td>Yes</td>
+<td>Yes <a class="footnote-reference" href="#f1" id="id1">[1]</a></td>
<td>No</td>
</tr>
-<tr class="row-even"><td><em>SQS</em></td>
+<tr class="row-odd"><td><em>SQS</em></td>
<td>Virtual</td>
<td>Yes</td>
-<td>Yes <a class="footnote-reference" href="#f1" id="id3">[1]</a></td>
-<td>Yes <a class="footnote-reference" href="#f2" id="id4">[2]</a></td>
+<td>Yes <a class="footnote-reference" href="#f1" id="id2">[1]</a></td>
+<td>Yes <a class="footnote-reference" href="#f2" id="id3">[2]</a></td>
</tr>
-<tr class="row-odd"><td><em>mongodb</em></td>
+<tr class="row-even"><td><em>couchdb</em></td>
<td>Virtual</td>
<td>Yes</td>
-<td>Yes <a class="footnote-reference" href="#f1" id="id5">[1]</a></td>
+<td>Yes <a class="footnote-reference" href="#f1" id="id4">[1]</a></td>
+<td>No</td>
+</tr>
+<tr class="row-odd"><td><em>in-memory</em></td>
+<td>Virtual</td>
<td>Yes</td>
+<td>Yes <a class="footnote-reference" href="#f1" id="id5">[1]</a></td>
+<td>No</td>
</tr>
-<tr class="row-even"><td><em>couchdb</em></td>
+<tr class="row-even"><td><em>django</em></td>
<td>Virtual</td>
<td>Yes</td>
<td>Yes <a class="footnote-reference" href="#f1" id="id6">[1]</a></td>
<td>No</td>
</tr>
-<tr class="row-odd"><td><em>in-memory</em></td>
+<tr class="row-odd"><td><em>sqlalchemy</em></td>
<td>Virtual</td>
<td>Yes</td>
<td>Yes <a class="footnote-reference" href="#f1" id="id7">[1]</a></td>
@@ -179,23 +200,23 @@ and the <a class="reference external" href="http://en.wikipedia.org/wiki/AMQP">W
<table class="docutils footnote" frame="void" id="f1" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
-<tr><td class="label">[1]</td><td><em>(<a class="fn-backref" href="#id1">1</a>, <a class="fn-backref" href="#id2">2</a>, <a class="fn-backref" href="#id3">3</a>, <a class="fn-backref" href="#id5">4</a>, <a class="fn-backref" href="#id6">5</a>, <a class="fn-backref" href="#id7">6</a>)</em> Declarations only kept in memory, so exchanges/queues
+<tr><td class="label">[1]</td><td><em>(<a class="fn-backref" href="#id1">1</a>, <a class="fn-backref" href="#id2">2</a>, <a class="fn-backref" href="#id4">3</a>, <a class="fn-backref" href="#id5">4</a>, <a class="fn-backref" href="#id6">5</a>, <a class="fn-backref" href="#id7">6</a>)</em> Declarations only kept in memory, so exchanges/queues
must be declared by all clients that needs them.</td></tr>
</tbody>
</table>
<table class="docutils footnote" frame="void" id="f2" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
-<tr><td class="label"><a class="fn-backref" href="#id4">[2]</a></td><td>Fanout supported via storing routing tables in SimpleDB.
+<tr><td class="label"><a class="fn-backref" href="#id3">[2]</a></td><td>Fanout supported via storing routing tables in SimpleDB.
Disabled by default, but can be enabled by using the
<tt class="docutils literal"><span class="pre">supports_fanout</span></tt> transport option.</td></tr>
</tbody>
</table>
<div class="section" id="documentation">
<h3>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h3>
-<p>Kombu is using Sphinx, and the latest documentation is available at GitHub:</p>
+<p>Kombu is using Sphinx, and the latest documentation can be found here:</p>
<blockquote>
-<div><a class="reference external" href="http://ask.github.com/kombu">http://ask.github.com/kombu</a></div></blockquote>
+<div><a class="reference external" href="http://kombu.readthedocs.org/">http://kombu.readthedocs.org/</a></div></blockquote>
</div>
<div class="section" id="quick-overview">
<h3>Quick overview<a class="headerlink" href="#quick-overview" title="Permalink to this headline">¶</a></h3>
@@ -379,11 +400,11 @@ routing keys <cite>&#8220;usd.stock&#8221;</cite> and <cite>&#8220;eur.stock.db&
<div class="section" id="bug-tracker">
<h2>Bug tracker<a class="headerlink" href="#bug-tracker" title="Permalink to this headline">¶</a></h2>
<p>If you have any suggestions, bug reports or annoyances please report them
-to our issue tracker at <a class="reference external" href="http://github.com/ask/kombu/issues/">http://github.com/ask/kombu/issues/</a></p>
+to our issue tracker at <a class="reference external" href="http://github.com/celery/kombu/issues/">http://github.com/celery/kombu/issues/</a></p>
</div>
<div class="section" id="contributing">
<h2>Contributing<a class="headerlink" href="#contributing" title="Permalink to this headline">¶</a></h2>
-<p>Development of <cite>Kombu</cite> happens at Github: <a class="reference external" href="http://github.com/ask/kombu">http://github.com/ask/kombu</a></p>
+<p>Development of <cite>Kombu</cite> happens at Github: <a class="reference external" href="http://github.com/celery/kombu">http://github.com/celery/kombu</a></p>
<p>You are highly encouraged to participate in the development. If you don&#8217;t
like Github (for some reason) you&#8217;re welcome to send regular patches.</p>
</div>
@@ -468,12 +489,12 @@ 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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/objects.inv b/objects.inv
index dba31f8c..3030cc9d 100644
--- a/objects.inv
+++ b/objects.inv
Binary files differ
diff --git a/py-modindex.html b/py-modindex.html
index 7ab42952..783246e8 100644
--- a/py-modindex.html
+++ b/py-modindex.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Python Module Index &mdash; Kombu 2.1.3 documentation</title>
+ <title>Python Module Index &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="index.html" />
@@ -39,7 +39,7 @@
<li class="right" >
<a href="#" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -321,12 +321,12 @@
<li class="right" >
<a href="#" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/index.html b/reference/index.html
index 117a8e81..9bcf73b5 100644
--- a/reference/index.html
+++ b/reference/index.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>API Reference &mdash; Kombu 2.1.3 documentation</title>
+ <title>API Reference &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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>
@@ -44,7 +44,7 @@
<li class="right" >
<a href="../faq.html" title="Frequently Asked Questions"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -59,9 +59,9 @@
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
-<tr class="field-odd field"><th class="field-name">Release:</th><td class="field-body">2.1</td>
+<tr class="field-odd field"><th class="field-name">Release:</th><td class="field-body">2.2</td>
</tr>
-<tr class="field-even field"><th class="field-name">Date:</th><td class="field-body">April 03, 2012</td>
+<tr class="field-even field"><th class="field-name">Date:</th><td class="field-body">June 06, 2012</td>
</tr>
</tbody>
</table>
@@ -308,12 +308,12 @@
<li class="right" >
<a href="../faq.html" title="Frequently Asked Questions"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.abstract.html b/reference/kombu.abstract.html
index 55b96a68..194e2654 100644
--- a/reference/kombu.abstract.html
+++ b/reference/kombu.abstract.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.compression &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.compression &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -174,13 +174,13 @@
<li class="right" >
<a href="kombu.pools.html" title="General Pools - kombu.pools"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.clocks.html b/reference/kombu.clocks.html
index cfab2b52..d9e86497 100644
--- a/reference/kombu.clocks.html
+++ b/reference/kombu.clocks.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Clocks and Synchronization - kombu.clocks &mdash; Kombu 2.1.3 documentation</title>
+ <title>Clocks and Synchronization - kombu.clocks &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.compat" href="kombu.compat.html" />
<link rel="prev" title="Mixin Classes - kombu.mixins" href="kombu.mixins.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.mixins.html" title="Mixin Classes - kombu.mixins"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -191,13 +191,13 @@ the time stamp of the incoming message.</p>
<li class="right" >
<a href="kombu.mixins.html" title="Mixin Classes - kombu.mixins"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.common.html b/reference/kombu.common.html
index 1760d93d..7f540f26 100644
--- a/reference/kombu.common.html
+++ b/reference/kombu.common.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Common Utilities - kombu.common &mdash; Kombu 2.1.3 documentation</title>
+ <title>Common Utilities - kombu.common &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Mixin Classes - kombu.mixins" href="kombu.mixins.html" />
<link rel="prev" title="kombu.entity" href="kombu.entity.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.entity.html" title="kombu.entity"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -123,7 +123,7 @@ collision.</p>
<dl class="function">
<dt id="kombu.common.itermessages">
-<tt class="descclassname">kombu.common.</tt><tt class="descname">itermessages</tt><big>(</big><em>conn</em>, <em>channel</em>, <em>queue</em>, <em>limit=1</em>, <em>timeout=None</em>, <em>Consumer=&lt;class 'kombu.messaging.Consumer'&gt;</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.common.itermessages" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">kombu.common.</tt><tt class="descname">itermessages</tt><big>(</big><em>conn</em>, <em>channel</em>, <em>queue</em>, <em>limit=1</em>, <em>timeout=None</em>, <em>Consumer=&lt;class 'kombu.messaging.Consumer'&gt;</em>, <em>callbacks=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.common.itermessages" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="function">
@@ -215,13 +215,13 @@ despite intermittent connection failures.</p>
<li class="right" >
<a href="kombu.entity.html" title="kombu.entity"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.compat.html b/reference/kombu.compat.html
index b9cba741..9c0c632e 100644
--- a/reference/kombu.compat.html
+++ b/reference/kombu.compat.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.compat &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.compat &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.clocks.html" title="Clocks and Synchronization - kombu.clocks"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -493,7 +493,7 @@ and the <cite>Message</cite> instance (a subclass of
<p>Replace with <a class="reference internal" href="kombu.messaging.html#kombu.messaging.Consumer" title="kombu.messaging.Consumer"><tt class="xref py py-class docutils literal"><span class="pre">kombu.messaging.Consumer</span></tt></a>.</p>
<dl class="class">
<dt id="kombu.compat.ConsumerSet">
-<em class="property">class </em><tt class="descclassname">kombu.compat.</tt><tt class="descname">ConsumerSet</tt><big>(</big><em>connection</em>, <em>from_dict=None</em>, <em>consumers=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.compat.ConsumerSet" title="Permalink to this definition">¶</a></dt>
+<em class="property">class </em><tt class="descclassname">kombu.compat.</tt><tt class="descname">ConsumerSet</tt><big>(</big><em>connection</em>, <em>from_dict=None</em>, <em>consumers=None</em>, <em>channel=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.compat.ConsumerSet" title="Permalink to this definition">¶</a></dt>
<dd><dl class="method">
<dt id="kombu.compat.ConsumerSet.add_consumer">
<tt class="descname">add_consumer</tt><big>(</big><em>consumer</em><big>)</big><a class="headerlink" href="#kombu.compat.ConsumerSet.add_consumer" title="Permalink to this definition">¶</a></dt>
@@ -771,13 +771,13 @@ and the <cite>Message</cite> instance (a subclass of
<li class="right" >
<a href="kombu.clocks.html" title="Clocks and Synchronization - kombu.clocks"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.compression.html b/reference/kombu.compression.html
index 42aa6323..8b6eb552 100644
--- a/reference/kombu.compression.html
+++ b/reference/kombu.compression.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.compression &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.compression &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.serialization.html" title="kombu.serialization"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -220,13 +220,13 @@
<li class="right" >
<a href="kombu.serialization.html" title="kombu.serialization"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.connection.html b/reference/kombu.connection.html
index e24a5df2..e1fd71be 100644
--- a/reference/kombu.connection.html
+++ b/reference/kombu.connection.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.connection &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.connection &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="index.html" title="API Reference"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -82,7 +82,7 @@
<h2><a class="toc-backref" href="#id1">Connection</a><a class="headerlink" href="#connection" title="Permalink to this headline">¶</a></h2>
<dl class="class">
<dt id="kombu.connection.BrokerConnection">
-<em class="property">class </em><tt class="descclassname">kombu.connection.</tt><tt class="descname">BrokerConnection</tt><big>(</big><em>hostname='localhost'</em>, <em>userid=None</em>, <em>password=None</em>, <em>virtual_host=None</em>, <em>port=None</em>, <em>insist=False</em>, <em>ssl=False</em>, <em>transport=None</em>, <em>connect_timeout=5</em>, <em>transport_options=None</em>, <em>login_method=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.connection.BrokerConnection" title="Permalink to this definition">¶</a></dt>
+<em class="property">class </em><tt class="descclassname">kombu.connection.</tt><tt class="descname">BrokerConnection</tt><big>(</big><em>hostname='localhost'</em>, <em>userid=None</em>, <em>password=None</em>, <em>virtual_host=None</em>, <em>port=None</em>, <em>insist=False</em>, <em>ssl=False</em>, <em>transport=None</em>, <em>connect_timeout=5</em>, <em>transport_options=None</em>, <em>login_method=None</em>, <em>uri_prefix=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.connection.BrokerConnection" title="Permalink to this definition">¶</a></dt>
<dd><p>A connection to the broker.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
@@ -197,7 +197,7 @@ Raises <tt class="xref py py-exc docutils literal"><span class="pre">socket.time
<dl class="method">
<dt id="kombu.connection.BrokerConnection.ensure_connection">
-<tt class="descname">ensure_connection</tt><big>(</big><em>errback=None</em>, <em>max_retries=None</em>, <em>interval_start=2</em>, <em>interval_step=2</em>, <em>interval_max=30</em><big>)</big><a class="headerlink" href="#kombu.connection.BrokerConnection.ensure_connection" title="Permalink to this definition">¶</a></dt>
+<tt class="descname">ensure_connection</tt><big>(</big><em>errback=None</em>, <em>max_retries=None</em>, <em>interval_start=2</em>, <em>interval_step=2</em>, <em>interval_max=30</em>, <em>callback=None</em><big>)</big><a class="headerlink" href="#kombu.connection.BrokerConnection.ensure_connection" title="Permalink to this definition">¶</a></dt>
<dd><p>Ensure we have a connection to the server.</p>
<p>If not retry establishing the connection with the settings
specified.</p>
@@ -216,6 +216,10 @@ If this limit is exceeded the connection error will be re-raised.</li>
for each retry.</li>
<li><strong>interval_max</strong> &#8211; Maximum number of seconds to sleep between
each retry.</li>
+<li><strong>callback</strong> &#8211; Optional callback that is called for every
+internal iteration (1 s)</li>
+<li><strong>callback</strong> &#8211; Optional callback that is called for every
+internal iteration (1 s).</li>
</ul>
</td>
</tr>
@@ -438,11 +442,7 @@ and the limit has been exceeded.</p>
<dl class="method">
<dt id="kombu.connection.ConnectionPool.release">
<tt class="descname">release</tt><big>(</big><em>resource</em><big>)</big><a class="headerlink" href="#kombu.connection.ConnectionPool.release" title="Permalink to this definition">¶</a></dt>
-<dd><p>Release resource so it can be used by another thread.</p>
-<p>The caller is responsible for discarding the object,
-and to never use the resource again. A new resource must
-be acquired if so needed.</p>
-</dd></dl>
+<dd></dd></dl>
</dd></dl>
@@ -482,11 +482,7 @@ and the limit has been exceeded.</p>
<dl class="method">
<dt id="kombu.connection.ChannelPool.release">
<tt class="descname">release</tt><big>(</big><em>resource</em><big>)</big><a class="headerlink" href="#kombu.connection.ChannelPool.release" title="Permalink to this definition">¶</a></dt>
-<dd><p>Release resource so it can be used by another thread.</p>
-<p>The caller is responsible for discarding the object,
-and to never use the resource again. A new resource must
-be acquired if so needed.</p>
-</dd></dl>
+<dd></dd></dl>
</dd></dl>
@@ -553,13 +549,13 @@ 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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.entity.html b/reference/kombu.entity.html
index a7472ea6..01569c66 100644
--- a/reference/kombu.entity.html
+++ b/reference/kombu.entity.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.entity &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.entity &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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="prev" title="kombu.messaging" href="kombu.messaging.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.messaging.html" title="kombu.messaging"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -277,7 +277,7 @@ properly sets content_encoding.</li>
<dl class="attribute">
<dt id="kombu.entity.Exchange.attrs">
-<tt class="descname">attrs</tt><em class="property"> = (('name', None), ('type', None), ('arguments', None), ('durable', &lt;type 'bool'&gt;), ('auto_delete', &lt;type 'bool'&gt;), ('delivery_mode', &lt;function &lt;lambda&gt; at 0x1026f8500&gt;))</em><a class="headerlink" href="#kombu.entity.Exchange.attrs" title="Permalink to this definition">¶</a></dt>
+<tt class="descname">attrs</tt><em class="property"> = (('name', None), ('type', None), ('arguments', None), ('durable', &lt;type 'bool'&gt;), ('auto_delete', &lt;type 'bool'&gt;), ('delivery_mode', &lt;function &lt;lambda&gt; at 0x102912a28&gt;))</em><a class="headerlink" href="#kombu.entity.Exchange.attrs" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
@@ -761,13 +761,13 @@ without modifying the server state.</li>
<li class="right" >
<a href="kombu.messaging.html" title="kombu.messaging"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.exceptions.html b/reference/kombu.exceptions.html
index 6adc5ecd..0ef1f88b 100644
--- a/reference/kombu.exceptions.html
+++ b/reference/kombu.exceptions.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.exceptions &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.exceptions &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Logging - kombu.log" href="kombu.log.html" />
<link rel="prev" title="kombu.pidbox" href="kombu.pidbox.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.pidbox.html" title="kombu.pidbox"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -161,13 +161,13 @@
<li class="right" >
<a href="kombu.pidbox.html" title="kombu.pidbox"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.log.html b/reference/kombu.log.html
index e9aaeed0..79a98a8f 100644
--- a/reference/kombu.log.html
+++ b/reference/kombu.log.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Logging - kombu.log &mdash; Kombu 2.1.3 documentation</title>
+ <title>Logging - kombu.log &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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.exceptions" href="kombu.exceptions.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.exceptions.html" title="kombu.exceptions"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -185,13 +185,13 @@
<li class="right" >
<a href="kombu.exceptions.html" title="kombu.exceptions"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.messaging.html b/reference/kombu.messaging.html
index abd6f64e..ef8b4ba1 100644
--- a/reference/kombu.messaging.html
+++ b/reference/kombu.messaging.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.messaging &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.messaging &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.simple.html" title="kombu.simple"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -480,13 +480,13 @@ registered.</p>
<li class="right" >
<a href="kombu.simple.html" title="kombu.simple"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.mixins.html b/reference/kombu.mixins.html
index fdfd43e3..5e6b434b 100644
--- a/reference/kombu.mixins.html
+++ b/reference/kombu.mixins.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Mixin Classes - kombu.mixins &mdash; Kombu 2.1.3 documentation</title>
+ <title>Mixin Classes - kombu.mixins &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Clocks and Synchronization - kombu.clocks" href="kombu.clocks.html" />
<link rel="prev" title="Common Utilities - kombu.common" href="kombu.common.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.common.html" title="Common Utilities - kombu.common"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -92,19 +92,20 @@ of <a class="reference internal" href="kombu.messaging.html#kombu.messaging.Cons
Supporting multiple consumers is important so that multiple
channels can be used for different QoS requirements.</p>
<p><strong>Example</strong>:</p>
-<div class="highlight-python"><pre>class Worker(ConsumerMixin):
- task_queue = Queue("tasks", Exchange("tasks"), "tasks"))
+<div class="highlight-python"><div class="highlight"><pre><span class="k">class</span> <span class="nc">Worker</span><span class="p">(</span><span class="n">ConsumerMixin</span><span class="p">):</span>
+ <span class="n">task_queue</span> <span class="o">=</span> <span class="n">Queue</span><span class="p">(</span><span class="s">&quot;tasks&quot;</span><span class="p">,</span> <span class="n">Exchange</span><span class="p">(</span><span class="s">&quot;tasks&quot;</span><span class="p">),</span> <span class="s">&quot;tasks&quot;</span><span class="p">))</span>
- def __init__(self, connection):
- self.connection = None
+ <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">connection</span><span class="p">):</span>
+ <span class="bp">self</span><span class="o">.</span><span class="n">connection</span> <span class="o">=</span> <span class="bp">None</span>
- def get_consumers(self, Consumer, channel):
- return [Consumer(queues=[self.task_queue],
- callback=[self.on_task])]
+ <span class="k">def</span> <span class="nf">get_consumers</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">Consumer</span><span class="p">,</span> <span class="n">channel</span><span class="p">):</span>
+ <span class="k">return</span> <span class="p">[</span><span class="n">Consumer</span><span class="p">(</span><span class="n">queues</span><span class="o">=</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">task_queue</span><span class="p">],</span>
+ <span class="n">callback</span><span class="o">=</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">on_task</span><span class="p">])]</span>
- def on_task(self, body, message):
- print("Got task: %r" % (body, ))
- message.ack()</pre>
+ <span class="k">def</span> <span class="nf">on_task</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">body</span><span class="p">,</span> <span class="n">message</span><span class="p">):</span>
+ <span class="k">print</span><span class="p">(</span><span class="s">&quot;Got task: </span><span class="si">%r</span><span class="s">&quot;</span> <span class="o">%</span> <span class="p">(</span><span class="n">body</span><span class="p">,</span> <span class="p">))</span>
+ <span class="n">message</span><span class="o">.</span><span class="n">ack</span><span class="p">()</span>
+</pre></div>
</div>
<p><strong>Additional handler methods</strong>:</p>
<blockquote>
@@ -328,13 +329,13 @@ of a thread.</p>
<li class="right" >
<a href="kombu.common.html" title="Common Utilities - kombu.common"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.pidbox.html b/reference/kombu.pidbox.html
index 43fb1d3b..40de2ed3 100644
--- a/reference/kombu.pidbox.html
+++ b/reference/kombu.pidbox.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.pidbox &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.pidbox &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.compat.html" title="kombu.compat"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -351,13 +351,13 @@
<li class="right" >
<a href="kombu.compat.html" title="kombu.compat"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.pools.html b/reference/kombu.pools.html
index 2675a6c7..e5840d28 100644
--- a/reference/kombu.pools.html
+++ b/reference/kombu.pools.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>General Pools - kombu.pools &mdash; Kombu 2.1.3 documentation</title>
+ <title>General Pools - kombu.pools &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.compression.html" title="kombu.compression"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -82,34 +82,167 @@
<dl class="class">
<dt id="kombu.pools.ProducerPool">
<em class="property">class </em><tt class="descclassname">kombu.pools.</tt><tt class="descname">ProducerPool</tt><big>(</big><em>connections</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="method">
+<dd><dl class="class">
<dt id="kombu.pools.ProducerPool.Producer">
-<tt class="descname">Producer</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.Producer" title="Permalink to this definition">¶</a></dt>
+<em class="property">class </em><tt class="descname">Producer</tt><big>(</big><em>channel</em>, <em>exchange=None</em>, <em>routing_key=None</em>, <em>serializer=None</em>, <em>auto_declare=None</em>, <em>compression=None</em>, <em>on_return=None</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.Producer" title="Permalink to this definition">¶</a></dt>
+<dd><p>Message Producer.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
+<li><strong>channel</strong> &#8211; Connection or channel.</li>
+<li><strong>exchange</strong> &#8211; Optional default exchange.</li>
+<li><strong>routing_key</strong> &#8211; Optional default routing key.</li>
+<li><strong>serializer</strong> &#8211; Default serializer. Default is <cite>&#8220;json&#8221;</cite>.</li>
+<li><strong>compression</strong> &#8211; Default compression method. Default is no
+compression.</li>
+<li><strong>auto_declare</strong> &#8211; Automatically declare the default exchange
+at instantiation. Default is <tt class="xref py py-const docutils literal"><span class="pre">True</span></tt>.</li>
+<li><strong>on_return</strong> &#8211; Callback to call for undeliverable messages,
+when the <cite>mandatory</cite> or <cite>immediate</cite> arguments to
+<a class="reference internal" href="#kombu.pools.ProducerPool.Producer.publish" title="kombu.pools.ProducerPool.Producer.publish"><tt class="xref py py-meth docutils literal"><span class="pre">publish()</span></tt></a> is used. This callback needs the following
+signature: <cite>(exception, exchange, routing_key, message)</cite>.
+Note that the producer needs to drain events to use this feature.</li>
+</ul>
+</td>
+</tr>
+</tbody>
+</table>
+<dl class="attribute">
+<dt id="kombu.pools.ProducerPool.Producer.auto_declare">
+<tt class="descname">auto_declare</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.auto_declare" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
+<dl class="attribute">
+<dt id="kombu.pools.ProducerPool.Producer.channel">
+<tt class="descname">channel</tt><em class="property"> = None</em><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.channel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.pools.ProducerPool.Producer.close">
+<tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.close" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.pools.ProducerPool.Producer.compression">
+<tt class="descname">compression</tt><em class="property"> = None</em><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.compression" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.pools.ProducerPool.Producer.connection">
+<tt class="descname">connection</tt><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.connection" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.pools.ProducerPool.Producer.declare">
+<tt class="descname">declare</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.declare" title="Permalink to this definition">¶</a></dt>
+<dd><p>Declare the exchange.</p>
+<p>This happens automatically at instantiation if
+<a class="reference internal" href="#kombu.pools.ProducerPool.Producer.auto_declare" title="kombu.pools.ProducerPool.Producer.auto_declare"><tt class="xref py py-attr docutils literal"><span class="pre">auto_declare</span></tt></a> is enabled.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.pools.ProducerPool.Producer.exchange">
+<tt class="descname">exchange</tt><em class="property"> = None</em><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.exchange" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.pools.ProducerPool.Producer.maybe_declare">
+<tt class="descname">maybe_declare</tt><big>(</big><em>entity</em>, <em>retry=False</em>, <em>**retry_policy</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.maybe_declare" title="Permalink to this definition">¶</a></dt>
+<dd><p>Declare the exchange if it hasn&#8217;t already been declared
+during this session.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.pools.ProducerPool.Producer.on_return">
+<tt class="descname">on_return</tt><em class="property"> = None</em><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.on_return" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.pools.ProducerPool.Producer.publish">
+<tt class="descname">publish</tt><big>(</big><em>body</em>, <em>routing_key=None</em>, <em>delivery_mode=None</em>, <em>mandatory=False</em>, <em>immediate=False</em>, <em>priority=0</em>, <em>content_type=None</em>, <em>content_encoding=None</em>, <em>serializer=None</em>, <em>headers=None</em>, <em>compression=None</em>, <em>exchange=None</em>, <em>retry=False</em>, <em>retry_policy=None</em>, <em>declare=</em><span class="optional">[</span><span class="optional">]</span>, <em>**properties</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.publish" title="Permalink to this definition">¶</a></dt>
+<dd><p>Publish message to the specified exchange.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
+<li><strong>body</strong> &#8211; Message body.</li>
+<li><strong>routing_key</strong> &#8211; Message routing key.</li>
+<li><strong>delivery_mode</strong> &#8211; See <tt class="xref py py-attr docutils literal"><span class="pre">delivery_mode</span></tt>.</li>
+<li><strong>mandatory</strong> &#8211; Currently not supported.</li>
+<li><strong>immediate</strong> &#8211; Currently not supported.</li>
+<li><strong>priority</strong> &#8211; Message priority. A number between 0 and 9.</li>
+<li><strong>content_type</strong> &#8211; Content type. Default is auto-detect.</li>
+<li><strong>content_encoding</strong> &#8211; Content encoding. Default is auto-detect.</li>
+<li><strong>serializer</strong> &#8211; Serializer to use. Default is auto-detect.</li>
+<li><strong>compression</strong> &#8211; Compression method to use. Default is none.</li>
+<li><strong>headers</strong> &#8211; Mapping of arbitrary headers to pass along
+with the message body.</li>
+<li><strong>exchange</strong> &#8211; Override the exchange. Note that this exchange
+must have been declared.</li>
+<li><strong>declare</strong> &#8211; Optional list of required entities that must
+have been declared before publishing the message. The entities
+will be declared using <a class="reference internal" href="kombu.common.html#kombu.common.maybe_declare" title="kombu.common.maybe_declare"><tt class="xref py py-func docutils literal"><span class="pre">maybe_declare()</span></tt></a>.</li>
+<li><strong>retry</strong> &#8211; Retry publishing, or declaring entities if the
+connection is lost.</li>
+<li><strong>retry_policy</strong> &#8211; Retry configuration, this is the keywords
+supported by <tt class="xref py py-meth docutils literal"><span class="pre">ensure()</span></tt>.</li>
+<li><strong>**properties</strong> &#8211; Additional message properties, see AMQP spec.</li>
+</ul>
+</td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
+
+<dl class="method">
+<dt id="kombu.pools.ProducerPool.Producer.release">
+<tt class="descname">release</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.release" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.pools.ProducerPool.Producer.revive">
+<tt class="descname">revive</tt><big>(</big><em>channel</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.revive" title="Permalink to this definition">¶</a></dt>
+<dd><p>Revive the producer after connection loss.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.pools.ProducerPool.Producer.routing_key">
+<tt class="descname">routing_key</tt><em class="property"> = ''</em><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.routing_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.pools.ProducerPool.Producer.serializer">
+<tt class="descname">serializer</tt><em class="property"> = None</em><a class="headerlink" href="#kombu.pools.ProducerPool.Producer.serializer" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
<dl class="method">
<dt id="kombu.pools.ProducerPool.create_producer">
-<tt class="descname">create_producer</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.create_producer" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">ProducerPool.</tt><tt class="descname">create_producer</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.create_producer" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.pools.ProducerPool.new">
-<tt class="descname">new</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.new" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">ProducerPool.</tt><tt class="descname">new</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.new" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.pools.ProducerPool.prepare">
-<tt class="descname">prepare</tt><big>(</big><em>p</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.prepare" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">ProducerPool.</tt><tt class="descname">prepare</tt><big>(</big><em>p</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.prepare" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.pools.ProducerPool.release">
-<tt class="descname">release</tt><big>(</big><em>resource</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.release" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">ProducerPool.</tt><tt class="descname">release</tt><big>(</big><em>resource</em><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.release" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.pools.ProducerPool.setup">
-<tt class="descname">setup</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.setup" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">ProducerPool.</tt><tt class="descname">setup</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.pools.ProducerPool.setup" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
@@ -206,13 +339,13 @@
<li class="right" >
<a href="kombu.compression.html" title="kombu.compression"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.serialization.html b/reference/kombu.serialization.html
index 67249a5a..e0819d4f 100644
--- a/reference/kombu.serialization.html
+++ b/reference/kombu.serialization.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.serialization &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.serialization &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -199,7 +199,7 @@ utf-8`, <cite>us-ascii</cite>, or <cite>binary</cite>.</li>
<dl class="data">
<dt id="kombu.serialization.registry">
-<tt class="descclassname">kombu.serialization.</tt><tt class="descname">registry</tt><em class="property"> = &lt;kombu.serialization.SerializerRegistry object at 0x10269b250&gt;</em><a class="headerlink" href="#kombu.serialization.registry" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">kombu.serialization.</tt><tt class="descname">registry</tt><em class="property"> = &lt;kombu.serialization.SerializerRegistry object at 0x1026a6d50&gt;</em><a class="headerlink" href="#kombu.serialization.registry" title="Permalink to this definition">¶</a></dt>
<dd><dl class="function">
<dt>
<tt class="descclassname">kombu.serialization.</tt><tt class="descname">encode</tt><big>(</big><em>data</em>, <em>serializer=default_serializer</em><big>)</big></dt>
@@ -308,13 +308,13 @@ 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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.simple.html b/reference/kombu.simple.html
index 23cbb56b..599c976d 100644
--- a/reference/kombu.simple.html
+++ b/reference/kombu.simple.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.simple &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.simple &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.connection.html" title="kombu.connection"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -314,13 +314,13 @@
<li class="right" >
<a href="kombu.connection.html" title="kombu.connection"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.syn.html b/reference/kombu.syn.html
index 2406a792..28448efd 100644
--- a/reference/kombu.syn.html
+++ b/reference/kombu.syn.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Async Utilities - kombu.syn &mdash; Kombu 2.1.3 documentation</title>
+ <title>Async Utilities - kombu.syn &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.abstract.html" title="kombu.compression"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -145,13 +145,13 @@
<li class="right" >
<a href="kombu.abstract.html" title="kombu.compression"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.SQS.html b/reference/kombu.transport.SQS.html
index 30b45045..3f6782be 100644
--- a/reference/kombu.transport.SQS.html
+++ b/reference/kombu.transport.SQS.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.SQS &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.SQS &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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="Models" href="kombu.transport.sqlalchemy.models.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.sqlalchemy.models.html" title="Models"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -497,13 +497,13 @@
<li class="right" >
<a href="kombu.transport.sqlalchemy.models.html" title="Models"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.amqplib.html b/reference/kombu.transport.amqplib.html
index 738b56e0..611f29f8 100644
--- a/reference/kombu.transport.amqplib.html
+++ b/reference/kombu.transport.amqplib.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.amqplib &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.amqplib &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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="prev" title="kombu.transport" href="kombu.transport.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.html" title="kombu.transport"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -95,8 +95,8 @@
<dl class="method">
<dt id="kombu.transport.amqplib.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.amqplib.Transport.Connection.drain_events" title="Permalink to this definition">¶</a></dt>
-<dd><p>Wait for an event on any channel.</p>
+<tt class="descname">drain_events</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.amqplib.Transport.Connection.drain_events" title="Permalink to this definition">¶</a></dt>
+<dd><p>Wait for an event on a channel.</p>
</dd></dl>
<dl class="method">
@@ -104,12 +104,6 @@
<tt class="descname">read_timeout</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.amqplib.Transport.Connection.read_timeout" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
-<dl class="method">
-<dt id="kombu.transport.amqplib.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.amqplib.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="attribute">
@@ -155,10 +149,35 @@
</dd></dl>
<dl class="method">
+<dt id="kombu.transport.amqplib.Transport.eventmap">
+<tt class="descclassname">Transport.</tt><tt class="descname">eventmap</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.amqplib.Transport.eventmap" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.amqplib.Transport.get_manager">
+<tt class="descclassname">Transport.</tt><tt class="descname">get_manager</tt><big>(</big><em>hostname=None</em>, <em>port=None</em>, <em>userid=None</em>, <em>password=None</em><big>)</big><a class="headerlink" href="#kombu.transport.amqplib.Transport.get_manager" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
<dt id="kombu.transport.amqplib.Transport.is_alive">
<tt class="descclassname">Transport.</tt><tt class="descname">is_alive</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.amqplib.Transport.is_alive" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
+<dl class="attribute">
+<dt id="kombu.transport.amqplib.Transport.nb_keep_draining">
+<tt class="descclassname">Transport.</tt><tt class="descname">nb_keep_draining</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.amqplib.Transport.nb_keep_draining" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.amqplib.Transport.on_poll_init">
+<tt class="descclassname">Transport.</tt><tt class="descname">on_poll_init</tt><big>(</big><em>poller</em><big>)</big><a class="headerlink" href="#kombu.transport.amqplib.Transport.on_poll_init" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.amqplib.Transport.on_poll_start">
+<tt class="descclassname">Transport.</tt><tt class="descname">on_poll_start</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.amqplib.Transport.on_poll_start" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
<dl class="method">
<dt id="kombu.transport.amqplib.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.amqplib.Transport.verify_connection" title="Permalink to this definition">¶</a></dt>
@@ -235,8 +254,8 @@ is the ID of the method.</p>
<dl class="method">
<dt id="kombu.transport.amqplib.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.amqplib.Connection.drain_events" title="Permalink to this definition">¶</a></dt>
-<dd><p>Wait for an event on any channel.</p>
+<tt class="descname">drain_events</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#kombu.transport.amqplib.Connection.drain_events" title="Permalink to this definition">¶</a></dt>
+<dd><p>Wait for an event on a channel.</p>
</dd></dl>
<dl class="method">
@@ -251,12 +270,6 @@ is the ID of the method.</p>
default value of None means match any method), and dispatch to it.</p>
</dd></dl>
-<dl class="method">
-<dt id="kombu.transport.amqplib.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.amqplib.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>
@@ -377,13 +390,13 @@ default value of None means match any method), and dispatch to it.</p>
<li class="right" >
<a href="kombu.transport.html" title="kombu.transport"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.base.html b/reference/kombu.transport.base.html
index cefdf765..5a162919 100644
--- a/reference/kombu.transport.base.html
+++ b/reference/kombu.transport.base.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.base &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.base &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -318,13 +318,13 @@ 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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.beanstalk.html b/reference/kombu.transport.beanstalk.html
index a158485f..725b0406 100644
--- a/reference/kombu.transport.beanstalk.html
+++ b/reference/kombu.transport.beanstalk.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.beanstalk &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.beanstalk &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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.redis" href="kombu.transport.redis.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.redis.html" title="kombu.transport.redis"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -201,13 +201,13 @@
<li class="right" >
<a href="kombu.transport.redis.html" title="kombu.transport.redis"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.couchdb.html b/reference/kombu.transport.couchdb.html
index d6075c67..1e982a2d 100644
--- a/reference/kombu.transport.couchdb.html
+++ b/reference/kombu.transport.couchdb.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.couchdb &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.couchdb &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.django" href="kombu.transport.django.html" />
<link rel="prev" title="kombu.transport.mongodb" href="kombu.transport.mongodb.html" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -211,13 +211,13 @@
<li class="right" >
<a href="kombu.transport.mongodb.html" title="kombu.transport.mongodb"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.django.html b/reference/kombu.transport.django.html
index 6c1a28fc..847fa121 100644
--- a/reference/kombu.transport.django.html
+++ b/reference/kombu.transport.django.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.django &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.django &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Django Models - kombu.transport.django.models" href="kombu.transport.django.models.html" />
<link rel="prev" title="kombu.transport.couchdb" href="kombu.transport.couchdb.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.couchdb.html" title="kombu.transport.couchdb"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -187,13 +187,13 @@
<li class="right" >
<a href="kombu.transport.couchdb.html" title="kombu.transport.couchdb"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.django.management.commands.clean_kombu_messages.html b/reference/kombu.transport.django.management.commands.clean_kombu_messages.html
index 1ba02159..fd8c0532 100644
--- a/reference/kombu.transport.django.management.commands.clean_kombu_messages.html
+++ b/reference/kombu.transport.django.management.commands.clean_kombu_messages.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Django Management - clean_kombu_messages &mdash; Kombu 2.1.3 documentation</title>
+ <title>Django Management - clean_kombu_messages &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.sqlalchemy" href="kombu.transport.sqlalchemy.html" />
<link rel="prev" title="Django Managers - kombu.transport.django.managers" href="kombu.transport.django.managers.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.django.managers.html" title="Django Managers - kombu.transport.django.managers"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -120,13 +120,13 @@
<li class="right" >
<a href="kombu.transport.django.managers.html" title="Django Managers - kombu.transport.django.managers"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.django.managers.html b/reference/kombu.transport.django.managers.html
index b8689373..f6ae1c28 100644
--- a/reference/kombu.transport.django.managers.html
+++ b/reference/kombu.transport.django.managers.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Django Managers - kombu.transport.django.managers &mdash; Kombu 2.1.3 documentation</title>
+ <title>Django Managers - kombu.transport.django.managers &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Django Management - clean_kombu_messages" href="kombu.transport.django.management.commands.clean_kombu_messages.html" />
<link rel="prev" title="Django Models - kombu.transport.django.models" href="kombu.transport.django.models.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.django.models.html" title="Django Models - kombu.transport.django.models"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -165,13 +165,13 @@
<li class="right" >
<a href="kombu.transport.django.models.html" title="Django Models - kombu.transport.django.models"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.django.models.html b/reference/kombu.transport.django.models.html
index e8634661..1cd37b9b 100644
--- a/reference/kombu.transport.django.models.html
+++ b/reference/kombu.transport.django.models.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Django Models - kombu.transport.django.models &mdash; Kombu 2.1.3 documentation</title>
+ <title>Django Models - kombu.transport.django.models &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Django Managers - kombu.transport.django.managers" href="kombu.transport.django.managers.html" />
<link rel="prev" title="kombu.transport.django" href="kombu.transport.django.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.django.html" title="kombu.transport.django"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -73,7 +73,7 @@
<dl class="attribute">
<dt id="kombu.transport.django.models.Message.objects">
-<tt class="descclassname">Message.</tt><tt class="descname">objects</tt><em class="property"> = &lt;kombu.transport.django.managers.MessageManager object at 0x1034fe090&gt;</em><a class="headerlink" href="#kombu.transport.django.models.Message.objects" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Message.</tt><tt class="descname">objects</tt><em class="property"> = &lt;kombu.transport.django.managers.MessageManager object at 0x1041d93d0&gt;</em><a class="headerlink" href="#kombu.transport.django.models.Message.objects" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
@@ -104,7 +104,7 @@
<dl class="attribute">
<dt id="kombu.transport.django.models.Queue.objects">
-<tt class="descclassname">Queue.</tt><tt class="descname">objects</tt><em class="property"> = &lt;kombu.transport.django.managers.QueueManager object at 0x1034feb90&gt;</em><a class="headerlink" href="#kombu.transport.django.models.Queue.objects" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Queue.</tt><tt class="descname">objects</tt><em class="property"> = &lt;kombu.transport.django.managers.QueueManager object at 0x1041d2e90&gt;</em><a class="headerlink" href="#kombu.transport.django.models.Queue.objects" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
@@ -162,13 +162,13 @@
<li class="right" >
<a href="kombu.transport.django.html" title="kombu.transport.django"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.html b/reference/kombu.transport.html
index bea53438..3c61bea2 100644
--- a/reference/kombu.transport.html
+++ b/reference/kombu.transport.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.amqplib" href="kombu.transport.amqplib.html" />
<link rel="prev" title="Logging - kombu.log" href="kombu.log.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.log.html" title="Logging - kombu.log"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -175,13 +175,13 @@ the alias table will be consulted.</p>
<li class="right" >
<a href="kombu.log.html" title="Logging - kombu.log"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.librabbitmq.html b/reference/kombu.transport.librabbitmq.html
index 77ced493..d24229af 100644
--- a/reference/kombu.transport.librabbitmq.html
+++ b/reference/kombu.transport.librabbitmq.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.librabbitmq &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.librabbitmq &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.pika" href="kombu.transport.pika.html" />
<link rel="prev" title="kombu.transport.amqplib" href="kombu.transport.amqplib.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.amqplib.html" title="kombu.transport.amqplib"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -57,7 +57,7 @@
<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>
+<p><a class="reference external" href="http://pypi.python.org/librabbitmq/">librabbitmq</a> transport.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -87,13 +87,13 @@
<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>
+<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>channel_max=65535</em>, <em>frame_max=131072</em>, <em>heartbeat=0</em>, <em>lazy=False</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>body</em>, <em>props</em>, <em>info</em>, <em>channel</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel.Message" title="Permalink to this definition">¶</a></dt>
+<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>props</em>, <em>info</em>, <em>body</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Channel.Message" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
@@ -104,11 +104,16 @@
</dd></dl>
+<dl class="class">
+<dt id="kombu.transport.librabbitmq.Transport.Connection.Message">
+<em class="property">class </em><tt class="descclassname">Transport.Connection.</tt><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>props</em>, <em>info</em>, <em>body</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.Connection.Message" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
</dd></dl>
<dl class="attribute">
<dt id="kombu.transport.librabbitmq.Transport.channel_errors">
-<tt class="descclassname">Transport.</tt><tt class="descname">channel_errors</tt><em class="property"> = (&lt;class 'kombu.exceptions.StdChannelError'&gt;, &lt;class '_pyrabbitmq.ChannelError'&gt;)</em><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.channel_errors" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.</tt><tt class="descname">channel_errors</tt><em class="property"> = (&lt;class 'kombu.exceptions.StdChannelError'&gt;, &lt;class '_librabbitmq.ChannelError'&gt;)</em><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.channel_errors" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
@@ -119,7 +124,7 @@
<dl class="attribute">
<dt id="kombu.transport.librabbitmq.Transport.connection_errors">
-<tt class="descclassname">Transport.</tt><tt class="descname">connection_errors</tt><em class="property"> = (&lt;class '_pyrabbitmq.ConnectionError'&gt;, &lt;class 'socket.error'&gt;, &lt;type 'exceptions.IOError'&gt;, &lt;type 'exceptions.OSError'&gt;)</em><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.connection_errors" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.</tt><tt class="descname">connection_errors</tt><em class="property"> = (&lt;class '_librabbitmq.ConnectionError'&gt;, &lt;class 'socket.error'&gt;, &lt;type 'exceptions.IOError'&gt;, &lt;type 'exceptions.OSError'&gt;)</em><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.connection_errors" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
@@ -148,6 +153,26 @@
<dd><p>Establish connection to the AMQP broker.</p>
</dd></dl>
+<dl class="method">
+<dt id="kombu.transport.librabbitmq.Transport.eventmap">
+<tt class="descclassname">Transport.</tt><tt class="descname">eventmap</tt><big>(</big><em>connection</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.eventmap" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Transport.nb_keep_draining">
+<tt class="descclassname">Transport.</tt><tt class="descname">nb_keep_draining</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.nb_keep_draining" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.librabbitmq.Transport.on_poll_init">
+<tt class="descclassname">Transport.</tt><tt class="descname">on_poll_init</tt><big>(</big><em>poller</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.on_poll_init" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.librabbitmq.Transport.on_poll_start">
+<tt class="descclassname">Transport.</tt><tt class="descname">on_poll_start</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Transport.on_poll_start" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
</dd></dl>
</div>
@@ -155,7 +180,7 @@
<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>
+<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>channel_max=65535</em>, <em>frame_max=131072</em>, <em>heartbeat=0</em>, <em>lazy=False</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>
@@ -166,7 +191,7 @@
<dl class="class">
<dt id="kombu.transport.librabbitmq.Connection.Channel.Message">
-<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>body</em>, <em>props</em>, <em>info</em>, <em>channel</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message" title="Permalink to this definition">¶</a></dt>
+<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>props</em>, <em>info</em>, <em>body</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.Message" title="Permalink to this definition">¶</a></dt>
<dd><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>
@@ -330,7 +355,7 @@ after transient reply message received.</p>
<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>
+<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>arguments=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">
@@ -340,7 +365,7 @@ after transient reply message received.</p>
<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>
+<tt class="descclassname">Connection.Channel.</tt><tt class="descname">basic_publish</tt><big>(</big><em>body</em>, <em>exchange=''</em>, <em>routing_key=''</em>, <em>mandatory=False</em>, <em>immediate=False</em>, <em>**properties</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">
@@ -361,7 +386,16 @@ after transient reply message received.</p>
<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>
+<dd><p>Declare exchange.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>auto_delete</strong> &#8211; Not recommended and so it is ignored.</td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
<dl class="method">
<dt id="kombu.transport.librabbitmq.Connection.Channel.exchange_delete">
@@ -370,7 +404,7 @@ after transient reply message received.</p>
<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>
+<tt class="descclassname">Connection.Channel.</tt><tt class="descname">flow</tt><big>(</big><em>active</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="attribute">
@@ -416,24 +450,171 @@ after transient reply message received.</p>
<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>
+<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>arguments=None</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>
+
+<dl class="method">
+<dt id="kombu.transport.librabbitmq.Connection.Channel.recover">
+<tt class="descclassname">Connection.Channel.</tt><tt class="descname">recover</tt><big>(</big><em>requeue=True</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Channel.recover" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+<dl class="class">
+<dt id="kombu.transport.librabbitmq.Connection.Message">
+<em class="property">class </em><tt class="descclassname">Connection.</tt><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>props</em>, <em>info</em>, <em>body</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="exception">
+<dt id="kombu.transport.librabbitmq.Connection.Message.MessageStateError">
+<em class="property">exception </em><tt class="descname">MessageStateError</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.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.Message.MessageStateError.args">
+<tt class="descname">args</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.MessageStateError.args" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.Message.MessageStateError.message">
+<tt class="descname">message</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.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">
-<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>
+<dt id="kombu.transport.librabbitmq.Connection.Message.ack">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">ack</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.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-odd field"><th class="field-name" colspan="2">Raises MessageStateError:</th></tr>
+<tr class="field-odd 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.Message.ack_log_error">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">ack_log_error</tt><big>(</big><em>logger</em>, <em>errors</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.ack_log_error" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.channel_max">
-<tt class="descclassname">Connection.</tt><tt class="descname">channel_max</tt><em class="property"> = 65535</em><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.channel_max" title="Permalink to this definition">¶</a></dt>
+<dt id="kombu.transport.librabbitmq.Connection.Message.acknowledged">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">acknowledged</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.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="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.Message.body">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">body</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.body" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
-<dt id="kombu.transport.librabbitmq.Connection.channels">
-<tt class="descclassname">Connection.</tt><tt class="descname">channels</tt><em class="property"> = {}</em><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.channels" title="Permalink to this definition">¶</a></dt>
+<dt id="kombu.transport.librabbitmq.Connection.Message.channel">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">channel</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.channel" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.Message.content_encoding">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">content_encoding</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.content_encoding" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.Message.content_type">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">content_type</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.content_type" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.librabbitmq.Connection.Message.decode">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">decode</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.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.Message.delivery_info">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">delivery_info</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.delivery_info" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.Message.delivery_tag">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">delivery_tag</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.delivery_tag" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.Message.headers">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">headers</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.headers" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.Message.payload">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">payload</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.payload" title="Permalink to this definition">¶</a></dt>
+<dd><p>The decoded message body.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.Message.properties">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">properties</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.properties" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.librabbitmq.Connection.Message.reject">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">reject</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.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-odd field"><th class="field-name" colspan="2">Raises MessageStateError:</th></tr>
+<tr class="field-odd 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.Message.reject_log_error">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">reject_log_error</tt><big>(</big><em>logger</em>, <em>errors</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.Message.reject_log_error" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.librabbitmq.Connection.Message.requeue">
+<tt class="descclassname">Connection.Message.</tt><tt class="descname">requeue</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.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-odd field"><th class="field-name" colspan="2">Raises MessageStateError:</th></tr>
+<tr class="field-odd 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="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.callbacks">
+<tt class="descclassname">Connection.</tt><tt class="descname">callbacks</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.callbacks" title="Permalink to this definition">¶</a></dt>
+<dd></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.channel_max">
+<tt class="descclassname">Connection.</tt><tt class="descname">channel_max</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.channel_max" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
@@ -442,18 +623,50 @@ after transient reply message received.</p>
<dd></dd></dl>
<dl class="method">
+<dt id="kombu.transport.librabbitmq.Connection.connect">
+<tt class="descclassname">Connection.</tt><tt class="descname">connect</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.connect" title="Permalink to this definition">¶</a></dt>
+<dd><p>Establish connection to the broker.</p>
+</dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.connected">
+<tt class="descclassname">Connection.</tt><tt class="descname">connected</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.connected" title="Permalink to this definition">¶</a></dt>
+<dd></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>
+<dl class="method">
+<dt id="kombu.transport.librabbitmq.Connection.fileno">
+<tt class="descclassname">Connection.</tt><tt class="descname">fileno</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.fileno" title="Permalink to this definition">¶</a></dt>
+<dd><p>File descriptor number.</p>
+</dd></dl>
+
<dl class="attribute">
<dt id="kombu.transport.librabbitmq.Connection.frame_max">
-<tt class="descclassname">Connection.</tt><tt class="descname">frame_max</tt><em class="property"> = 131072</em><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.frame_max" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Connection.</tt><tt class="descname">frame_max</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.frame_max" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.librabbitmq.Connection.heartbeat">
-<tt class="descclassname">Connection.</tt><tt class="descname">heartbeat</tt><em class="property"> = 0</em><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.heartbeat" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Connection.</tt><tt class="descname">heartbeat</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.heartbeat" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.hostname">
+<tt class="descclassname">Connection.</tt><tt class="descname">hostname</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.hostname" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.password">
+<tt class="descclassname">Connection.</tt><tt class="descname">password</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.password" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.port">
+<tt class="descclassname">Connection.</tt><tt class="descname">port</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.port" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
@@ -461,6 +674,16 @@ after transient reply message received.</p>
<tt class="descclassname">Connection.</tt><tt class="descname">reconnect</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.reconnect" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.userid">
+<tt class="descclassname">Connection.</tt><tt class="descname">userid</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.userid" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.librabbitmq.Connection.virtual_host">
+<tt class="descclassname">Connection.</tt><tt class="descname">virtual_host</tt><a class="headerlink" href="#kombu.transport.librabbitmq.Connection.virtual_host" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
</dd></dl>
</div>
@@ -471,7 +694,7 @@ after transient reply message received.</p>
<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>body</em>, <em>props</em>, <em>info</em>, <em>channel</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Channel.Message" title="Permalink to this definition">¶</a></dt>
+<em class="property">class </em><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>props</em>, <em>info</em>, <em>body</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Channel.Message" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
@@ -487,7 +710,7 @@ after transient reply message received.</p>
<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>body</em>, <em>props</em>, <em>info</em>, <em>channel</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Message" title="Permalink to this definition">¶</a></dt>
+<em class="property">class </em><tt class="descclassname">kombu.transport.librabbitmq.</tt><tt class="descname">Message</tt><big>(</big><em>channel</em>, <em>props</em>, <em>info</em>, <em>body</em><big>)</big><a class="headerlink" href="#kombu.transport.librabbitmq.Message" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</div>
@@ -555,13 +778,13 @@ after transient reply message received.</p>
<li class="right" >
<a href="kombu.transport.amqplib.html" title="kombu.transport.amqplib"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.memory.html b/reference/kombu.transport.memory.html
index 8b09aadc..5088cb42 100644
--- a/reference/kombu.transport.memory.html
+++ b/reference/kombu.transport.memory.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.memory &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.memory &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.redis" href="kombu.transport.redis.html" />
<link rel="prev" title="kombu.transport.pika" href="kombu.transport.pika2.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.pika2.html" title="kombu.transport.pika"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -105,7 +105,7 @@
<dl class="attribute">
<dt id="kombu.transport.memory.Transport.state">
-<tt class="descclassname">Transport.</tt><tt class="descname">state</tt><em class="property"> = &lt;kombu.transport.virtual.BrokerState object at 0x104220890&gt;</em><a class="headerlink" href="#kombu.transport.memory.Transport.state" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.</tt><tt class="descname">state</tt><em class="property"> = &lt;kombu.transport.virtual.BrokerState object at 0x104270450&gt;</em><a class="headerlink" href="#kombu.transport.memory.Transport.state" title="Permalink to this definition">¶</a></dt>
<dd><p>memory backend state is global.</p>
</dd></dl>
@@ -197,13 +197,13 @@
<li class="right" >
<a href="kombu.transport.pika2.html" title="kombu.transport.pika"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.mongodb.html b/reference/kombu.transport.mongodb.html
index 5080ab85..f966bffb 100644
--- a/reference/kombu.transport.mongodb.html
+++ b/reference/kombu.transport.mongodb.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.mongodb &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.mongodb &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.couchdb" href="kombu.transport.couchdb.html" />
<link rel="prev" title="kombu.transport.beanstalk" href="kombu.transport.beanstalk.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.beanstalk.html" title="kombu.transport.beanstalk"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -233,13 +233,13 @@
<li class="right" >
<a href="kombu.transport.beanstalk.html" title="kombu.transport.beanstalk"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.pika.html b/reference/kombu.transport.pika.html
index c021e102..8d96d01a 100644
--- a/reference/kombu.transport.pika.html
+++ b/reference/kombu.transport.pika.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.pika &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.pika &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.transport.pika" href="kombu.transport.pika2.html" />
<link rel="prev" title="kombu.transport.librabbitmq" href="kombu.transport.librabbitmq.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.librabbitmq.html" title="kombu.transport.librabbitmq"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -110,13 +110,13 @@
<li class="right" >
<a href="kombu.transport.librabbitmq.html" title="kombu.transport.librabbitmq"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.pika2.html b/reference/kombu.transport.pika2.html
index d30ba686..97fbc0f0 100644
--- a/reference/kombu.transport.pika2.html
+++ b/reference/kombu.transport.pika2.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.pika &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.pika &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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.pika" href="kombu.transport.pika.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.pika.html" title="kombu.transport.pika"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -418,13 +418,13 @@
<li class="right" >
<a href="kombu.transport.pika.html" title="kombu.transport.pika"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.redis.html b/reference/kombu.transport.redis.html
index 991beed4..d9eff3fc 100644
--- a/reference/kombu.transport.redis.html
+++ b/reference/kombu.transport.redis.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.redis &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.redis &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -86,59 +86,149 @@
<dd><dl class="class">
<dt id="kombu.transport.redis.Transport.Channel">
<em class="property">class </em><tt class="descname">Channel</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="attribute">
+<dd><dl class="class">
+<dt id="kombu.transport.redis.Transport.Channel.QoS">
+<em class="property">class </em><tt class="descname">QoS</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="method">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.ack">
+<tt class="descname">ack</tt><big>(</big><em>delivery_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.ack" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.append">
+<tt class="descname">append</tt><big>(</big><em>message</em>, <em>delivery_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.append" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.client">
+<tt class="descname">client</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.client" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.reject">
+<tt class="descname">reject</tt><big>(</big><em>delivery_tag</em>, <em>requeue=False</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.reject" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.restore_at_shutdown">
+<tt class="descname">restore_at_shutdown</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.restore_at_shutdown" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.restore_by_tag">
+<tt class="descname">restore_by_tag</tt><big>(</big><em>tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.restore_by_tag" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.restore_unacked">
+<tt class="descname">restore_unacked</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.restore_unacked" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.restore_visible">
+<tt class="descname">restore_visible</tt><big>(</big><em>start=0</em>, <em>num=10</em>, <em>interval=10</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.restore_visible" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.unacked_index_key">
+<tt class="descname">unacked_index_key</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.unacked_index_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.unacked_key">
+<tt class="descname">unacked_key</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.unacked_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.QoS.visibility_timeout">
+<tt class="descname">visibility_timeout</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.QoS.visibility_timeout" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+<dl class="attribute">
<dt id="kombu.transport.redis.Transport.Channel.active_queues">
-<tt class="descname">active_queues</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.active_queues" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">active_queues</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.active_queues" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Transport.Channel.basic_cancel">
-<tt class="descname">basic_cancel</tt><big>(</big><em>consumer_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.basic_cancel" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">basic_cancel</tt><big>(</big><em>consumer_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.basic_cancel" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Transport.Channel.basic_consume">
-<tt class="descname">basic_consume</tt><big>(</big><em>queue</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.basic_consume" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">basic_consume</tt><big>(</big><em>queue</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.basic_consume" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Transport.Channel.client">
-<tt class="descname">client</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.client" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">client</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.client" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Transport.Channel.close">
-<tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.close" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.close" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.from_transport_options">
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">from_transport_options</tt><em class="property"> = ('body_encoding', 'deadletter_queue', 'unacked_key', 'unacked_index_key', 'visibility_timeout', 'priority_steps')</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.from_transport_options" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Transport.Channel.get_table">
-<tt class="descname">get_table</tt><big>(</big><em>exchange</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.get_table" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">get_table</tt><big>(</big><em>exchange</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.get_table" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Transport.Channel.keyprefix_queue">
-<tt class="descname">keyprefix_queue</tt><em class="property"> = '_kombu.binding.%s'</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.keyprefix_queue" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">keyprefix_queue</tt><em class="property"> = '_kombu.binding.%s'</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.keyprefix_queue" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Transport.Channel.pipeline">
-<tt class="descname">pipeline</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.pipeline" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">pipeline</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.pipeline" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.Channel.priority">
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">priority</tt><big>(</big><em>n</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.priority" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.priority_steps">
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">priority_steps</tt><em class="property"> = [0, 3, 6, 9]</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.priority_steps" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Transport.Channel.sep">
-<tt class="descname">sep</tt><em class="property"> = '\x06\x16'</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.sep" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">sep</tt><em class="property"> = '\x06\x16'</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.sep" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Transport.Channel.subclient">
-<tt class="descname">subclient</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.subclient" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">subclient</tt><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.subclient" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Transport.Channel.supports_fanout">
-<tt class="descname">supports_fanout</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.supports_fanout" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">supports_fanout</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.supports_fanout" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.unacked_index_key">
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">unacked_index_key</tt><em class="property"> = 'unacked_index'</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.unacked_index_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.unacked_key">
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">unacked_key</tt><em class="property"> = 'unacked'</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.unacked_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Transport.Channel.visibility_timeout">
+<tt class="descclassname">Transport.Channel.</tt><tt class="descname">visibility_timeout</tt><em class="property"> = 18000</em><a class="headerlink" href="#kombu.transport.redis.Transport.Channel.visibility_timeout" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
@@ -148,6 +238,21 @@
<tt class="descclassname">Transport.</tt><tt class="descname">default_port</tt><em class="property"> = 6379</em><a class="headerlink" href="#kombu.transport.redis.Transport.default_port" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.handle_event">
+<tt class="descclassname">Transport.</tt><tt class="descname">handle_event</tt><big>(</big><em>fileno</em>, <em>event</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.handle_event" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.on_poll_init">
+<tt class="descclassname">Transport.</tt><tt class="descname">on_poll_init</tt><big>(</big><em>poller</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.on_poll_init" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Transport.on_poll_start">
+<tt class="descclassname">Transport.</tt><tt class="descname">on_poll_start</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Transport.on_poll_start" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
<dl class="attribute">
<dt id="kombu.transport.redis.Transport.polling_interval">
<tt class="descclassname">Transport.</tt><tt class="descname">polling_interval</tt><em class="property"> = None</em><a class="headerlink" href="#kombu.transport.redis.Transport.polling_interval" title="Permalink to this definition">¶</a></dt>
@@ -161,59 +266,149 @@
<dl class="class">
<dt id="kombu.transport.redis.Channel">
<em class="property">class </em><tt class="descclassname">kombu.transport.redis.</tt><tt class="descname">Channel</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel" title="Permalink to this definition">¶</a></dt>
-<dd><dl class="attribute">
+<dd><dl class="class">
+<dt id="kombu.transport.redis.Channel.QoS">
+<em class="property">class </em><tt class="descname">QoS</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.QoS" title="Permalink to this definition">¶</a></dt>
+<dd><dl class="method">
+<dt id="kombu.transport.redis.Channel.QoS.ack">
+<tt class="descname">ack</tt><big>(</big><em>delivery_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.ack" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Channel.QoS.append">
+<tt class="descname">append</tt><big>(</big><em>message</em>, <em>delivery_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.append" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.QoS.client">
+<tt class="descname">client</tt><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.client" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Channel.QoS.reject">
+<tt class="descname">reject</tt><big>(</big><em>delivery_tag</em>, <em>requeue=False</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.reject" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.QoS.restore_at_shutdown">
+<tt class="descname">restore_at_shutdown</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.restore_at_shutdown" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Channel.QoS.restore_by_tag">
+<tt class="descname">restore_by_tag</tt><big>(</big><em>tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.restore_by_tag" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Channel.QoS.restore_unacked">
+<tt class="descname">restore_unacked</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.restore_unacked" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Channel.QoS.restore_visible">
+<tt class="descname">restore_visible</tt><big>(</big><em>start=0</em>, <em>num=10</em>, <em>interval=10</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.restore_visible" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.QoS.unacked_index_key">
+<tt class="descname">unacked_index_key</tt><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.unacked_index_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.QoS.unacked_key">
+<tt class="descname">unacked_key</tt><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.unacked_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.QoS.visibility_timeout">
+<tt class="descname">visibility_timeout</tt><a class="headerlink" href="#kombu.transport.redis.Channel.QoS.visibility_timeout" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+</dd></dl>
+
+<dl class="attribute">
<dt id="kombu.transport.redis.Channel.active_queues">
-<tt class="descname">active_queues</tt><a class="headerlink" href="#kombu.transport.redis.Channel.active_queues" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">active_queues</tt><a class="headerlink" href="#kombu.transport.redis.Channel.active_queues" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Channel.basic_cancel">
-<tt class="descname">basic_cancel</tt><big>(</big><em>consumer_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.basic_cancel" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">basic_cancel</tt><big>(</big><em>consumer_tag</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.basic_cancel" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Channel.basic_consume">
-<tt class="descname">basic_consume</tt><big>(</big><em>queue</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.basic_consume" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">basic_consume</tt><big>(</big><em>queue</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.basic_consume" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Channel.client">
-<tt class="descname">client</tt><a class="headerlink" href="#kombu.transport.redis.Channel.client" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">client</tt><a class="headerlink" href="#kombu.transport.redis.Channel.client" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Channel.close">
-<tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.close" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.close" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.from_transport_options">
+<tt class="descclassname">Channel.</tt><tt class="descname">from_transport_options</tt><em class="property"> = ('body_encoding', 'deadletter_queue', 'unacked_key', 'unacked_index_key', 'visibility_timeout', 'priority_steps')</em><a class="headerlink" href="#kombu.transport.redis.Channel.from_transport_options" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Channel.get_table">
-<tt class="descname">get_table</tt><big>(</big><em>exchange</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.get_table" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">get_table</tt><big>(</big><em>exchange</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.get_table" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Channel.keyprefix_queue">
-<tt class="descname">keyprefix_queue</tt><em class="property"> = '_kombu.binding.%s'</em><a class="headerlink" href="#kombu.transport.redis.Channel.keyprefix_queue" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">keyprefix_queue</tt><em class="property"> = '_kombu.binding.%s'</em><a class="headerlink" href="#kombu.transport.redis.Channel.keyprefix_queue" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="kombu.transport.redis.Channel.pipeline">
-<tt class="descname">pipeline</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.pipeline" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">pipeline</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.pipeline" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="method">
+<dt id="kombu.transport.redis.Channel.priority">
+<tt class="descclassname">Channel.</tt><tt class="descname">priority</tt><big>(</big><em>n</em><big>)</big><a class="headerlink" href="#kombu.transport.redis.Channel.priority" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.priority_steps">
+<tt class="descclassname">Channel.</tt><tt class="descname">priority_steps</tt><em class="property"> = [0, 3, 6, 9]</em><a class="headerlink" href="#kombu.transport.redis.Channel.priority_steps" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Channel.sep">
-<tt class="descname">sep</tt><em class="property"> = '\x06\x16'</em><a class="headerlink" href="#kombu.transport.redis.Channel.sep" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">sep</tt><em class="property"> = '\x06\x16'</em><a class="headerlink" href="#kombu.transport.redis.Channel.sep" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Channel.subclient">
-<tt class="descname">subclient</tt><a class="headerlink" href="#kombu.transport.redis.Channel.subclient" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">subclient</tt><a class="headerlink" href="#kombu.transport.redis.Channel.subclient" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.redis.Channel.supports_fanout">
-<tt class="descname">supports_fanout</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.redis.Channel.supports_fanout" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">Channel.</tt><tt class="descname">supports_fanout</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.redis.Channel.supports_fanout" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.unacked_index_key">
+<tt class="descclassname">Channel.</tt><tt class="descname">unacked_index_key</tt><em class="property"> = 'unacked_index'</em><a class="headerlink" href="#kombu.transport.redis.Channel.unacked_index_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.unacked_key">
+<tt class="descclassname">Channel.</tt><tt class="descname">unacked_key</tt><em class="property"> = 'unacked'</em><a class="headerlink" href="#kombu.transport.redis.Channel.unacked_key" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="attribute">
+<dt id="kombu.transport.redis.Channel.visibility_timeout">
+<tt class="descclassname">Channel.</tt><tt class="descname">visibility_timeout</tt><em class="property"> = 18000</em><a class="headerlink" href="#kombu.transport.redis.Channel.visibility_timeout" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
@@ -281,13 +476,13 @@
<li class="right" >
<a href="kombu.transport.memory.html" title="kombu.transport.memory"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.sqlalchemy.html b/reference/kombu.transport.sqlalchemy.html
index cc9a0d0f..5a9e46de 100644
--- a/reference/kombu.transport.sqlalchemy.html
+++ b/reference/kombu.transport.sqlalchemy.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.sqlalchemy &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.sqlalchemy &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Models" href="kombu.transport.sqlalchemy.models.html" />
<link rel="prev" title="Django Management - clean_kombu_messages" href="kombu.transport.django.management.commands.clean_kombu_messages.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.django.management.commands.clean_kombu_messages.html" title="Django Management - clean_kombu_messages"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -172,13 +172,13 @@
<li class="right" >
<a href="kombu.transport.django.management.commands.clean_kombu_messages.html" title="Django Management - clean_kombu_messages"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.sqlalchemy.models.html b/reference/kombu.transport.sqlalchemy.models.html
index b5d7cf49..635dff72 100644
--- a/reference/kombu.transport.sqlalchemy.models.html
+++ b/reference/kombu.transport.sqlalchemy.models.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Models &mdash; Kombu 2.1.3 documentation</title>
+ <title>Models &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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.sqlalchemy" href="kombu.transport.sqlalchemy.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.transport.sqlalchemy.html" title="kombu.transport.sqlalchemy"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -170,13 +170,13 @@
<li class="right" >
<a href="kombu.transport.sqlalchemy.html" title="kombu.transport.sqlalchemy"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.virtual.exchange.html b/reference/kombu.transport.virtual.exchange.html
index 65103c6a..09ffd496 100644
--- a/reference/kombu.transport.virtual.exchange.html
+++ b/reference/kombu.transport.virtual.exchange.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.virtual.exchange &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.virtual.exchange &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -291,13 +291,13 @@ 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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.virtual.html b/reference/kombu.transport.virtual.html
index d861f2c4..4aa9b80e 100644
--- a/reference/kombu.transport.virtual.html
+++ b/reference/kombu.transport.virtual.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.virtual &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.virtual &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -99,14 +99,12 @@
<dl class="attribute">
<dt id="kombu.transport.virtual.Transport.Channel">
<tt class="descname">Channel</tt><em class="property"> = &lt;class 'kombu.transport.virtual.Channel'&gt;</em><a class="headerlink" href="#kombu.transport.virtual.Transport.Channel" title="Permalink to this definition">¶</a></dt>
-<dd><p>channel class used.</p>
-</dd></dl>
+<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.virtual.Transport.Cycle">
<tt class="descname">Cycle</tt><em class="property"> = &lt;class 'kombu.transport.virtual.scheduling.FairCycle'&gt;</em><a class="headerlink" href="#kombu.transport.virtual.Transport.Cycle" title="Permalink to this definition">¶</a></dt>
-<dd><p>cycle class used.</p>
-</dd></dl>
+<dd></dd></dl>
<dl class="attribute">
<dt id="kombu.transport.virtual.Transport.polling_interval">
@@ -122,7 +120,7 @@
<dl class="attribute">
<dt id="kombu.transport.virtual.Transport.state">
-<tt class="descname">state</tt><em class="property"> = &lt;kombu.transport.virtual.BrokerState object at 0x103d33d50&gt;</em><a class="headerlink" href="#kombu.transport.virtual.Transport.state" title="Permalink to this definition">¶</a></dt>
+<tt class="descname">state</tt><em class="property"> = &lt;kombu.transport.virtual.BrokerState object at 0x103b5f550&gt;</em><a class="headerlink" href="#kombu.transport.virtual.Transport.state" title="Permalink to this definition">¶</a></dt>
<dd><p><a class="reference internal" href="#kombu.transport.virtual.BrokerState" title="kombu.transport.virtual.BrokerState"><tt class="xref py py-class docutils literal"><span class="pre">BrokerState</span></tt></a> containing declared exchanges and
bindings (set by constructor).</p>
</dd></dl>
@@ -230,7 +228,7 @@ goes out of scope.</p>
<dl class="method">
<dt id="kombu.transport.virtual.Channel.queue_declare">
-<tt class="descname">queue_declare</tt><big>(</big><em>queue</em>, <em>passive=False</em>, <em>auto_delete=False</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.virtual.Channel.queue_declare" title="Permalink to this definition">¶</a></dt>
+<tt class="descname">queue_declare</tt><big>(</big><em>queue</em>, <em>passive=False</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#kombu.transport.virtual.Channel.queue_declare" title="Permalink to this definition">¶</a></dt>
<dd><p>Declare queue.</p>
</dd></dl>
@@ -562,6 +560,12 @@ prefetch limits.</p>
<dd><p>Remove from transactional state and requeue message.</p>
</dd></dl>
+<dl class="attribute">
+<dt id="kombu.transport.virtual.QoS.restore_at_shutdown">
+<tt class="descname">restore_at_shutdown</tt><em class="property"> = True</em><a class="headerlink" href="#kombu.transport.virtual.QoS.restore_at_shutdown" title="Permalink to this definition">¶</a></dt>
+<dd><p>If disabled, unacked messages won&#8217;t be restored at shutdown.</p>
+</dd></dl>
+
<dl class="method">
<dt id="kombu.transport.virtual.QoS.restore_unacked">
<tt class="descname">restore_unacked</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.virtual.QoS.restore_unacked" title="Permalink to this definition">¶</a></dt>
@@ -571,7 +575,7 @@ prefetch limits.</p>
<dl class="method">
<dt id="kombu.transport.virtual.QoS.restore_unacked_once">
<tt class="descname">restore_unacked_once</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.virtual.QoS.restore_unacked_once" title="Permalink to this definition">¶</a></dt>
-<dd><p>Restores all uncknowledged message at shutdown/gc collect.</p>
+<dd><p>Restores all unacknowledged message at shutdown/gc collect.</p>
<p>Will only be done once for each instance.</p>
</dd></dl>
@@ -589,6 +593,11 @@ prefetch limits.</p>
<dd><p>active bindings.</p>
</dd></dl>
+<dl class="method">
+<dt id="kombu.transport.virtual.BrokerState.clear">
+<tt class="descname">clear</tt><big>(</big><big>)</big><a class="headerlink" href="#kombu.transport.virtual.BrokerState.clear" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
<dl class="attribute">
<dt id="kombu.transport.virtual.BrokerState.exchanges">
<tt class="descname">exchanges</tt><em class="property"> = None</em><a class="headerlink" href="#kombu.transport.virtual.BrokerState.exchanges" title="Permalink to this definition">¶</a></dt>
@@ -663,13 +672,13 @@ 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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.transport.virtual.scheduling.html b/reference/kombu.transport.virtual.scheduling.html
index e28eaf73..9b7f0cb4 100644
--- a/reference/kombu.transport.virtual.scheduling.html
+++ b/reference/kombu.transport.virtual.scheduling.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.transport.virtual.scheduling &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.transport.virtual.scheduling &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -147,13 +147,13 @@ 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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.utils.compat.html b/reference/kombu.utils.compat.html
index 172e6fd4..d8356413 100644
--- a/reference/kombu.utils.compat.html
+++ b/reference/kombu.utils.compat.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Compat. utilities - kombu.utils.compat &mdash; Kombu 2.1.3 documentation</title>
+ <title>Compat. utilities - kombu.utils.compat &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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="Rate limiting - kombu.utils.limits" href="kombu.utils.limits.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.utils.limits.html" title="Rate limiting - kombu.utils.limits"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -126,7 +126,7 @@
<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 0x10264acf0&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 0x10264fdf0&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">
@@ -221,13 +221,13 @@ order if false.</p>
<li class="right" >
<a href="kombu.utils.limits.html" title="Rate limiting - kombu.utils.limits"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.utils.debug.html b/reference/kombu.utils.debug.html
index c5e16a06..61a757d7 100644
--- a/reference/kombu.utils.debug.html
+++ b/reference/kombu.utils.debug.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Debugging - kombu.utils.debug &mdash; Kombu 2.1.3 documentation</title>
+ <title>Debugging - kombu.utils.debug &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -151,13 +151,13 @@
<li class="right" >
<a href="kombu.utils.compat.html" title="Compat. utilities - kombu.utils.compat"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.utils.encoding.html b/reference/kombu.utils.encoding.html
index 91a3c828..1d31248c 100644
--- a/reference/kombu.utils.encoding.html
+++ b/reference/kombu.utils.encoding.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>String Encoding - kombu.utils.encoding &mdash; Kombu 2.1.3 documentation</title>
+ <title>String Encoding - kombu.utils.encoding &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -183,13 +183,13 @@ exception.</p>
<li class="right" >
<a href="kombu.utils.debug.html" title="Debugging - kombu.utils.debug"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.utils.finalize.html b/reference/kombu.utils.finalize.html
index c3a07469..abf02ee5 100644
--- a/reference/kombu.utils.finalize.html
+++ b/reference/kombu.utils.finalize.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Finalize - kombu.utils.finalize &mdash; Kombu 2.1.3 documentation</title>
+ <title>Finalize - kombu.utils.finalize &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="kombu.utils.url" href="kombu.utils.url.html" />
<link rel="prev" title="kombu.utils.functional" href="kombu.utils.functional.html" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -159,13 +159,13 @@
<li class="right" >
<a href="kombu.utils.functional.html" title="kombu.utils.functional"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.utils.functional.html b/reference/kombu.utils.functional.html
index a5e4b181..daa2c882 100644
--- a/reference/kombu.utils.functional.html
+++ b/reference/kombu.utils.functional.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>kombu.utils.functional &mdash; Kombu 2.1.3 documentation</title>
+ <title>kombu.utils.functional &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -134,13 +134,13 @@ memoized (see <tt class="xref py py-class docutils literal"><span class="pre">mp
<li class="right" >
<a href="kombu.utils.encoding.html" title="String Encoding - kombu.utils.encoding"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.utils.html b/reference/kombu.utils.html
index 5728c23a..013d46c8 100644
--- a/reference/kombu.utils.html
+++ b/reference/kombu.utils.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Utilities - kombu.utils &mdash; Kombu 2.1.3 documentation</title>
+ <title>Utilities - kombu.utils &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="API Reference" href="index.html" />
<link rel="next" title="Rate limiting - kombu.utils.limits" href="kombu.utils.limits.html" />
<link rel="prev" title="Async Utilities - kombu.syn" href="kombu.syn.html" />
@@ -45,7 +45,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 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -119,7 +119,7 @@ collision.</p>
<dl class="function">
<dt id="kombu.utils.retry_over_time">
-<tt class="descclassname">kombu.utils.</tt><tt class="descname">retry_over_time</tt><big>(</big><em>fun</em>, <em>catch</em>, <em>args=</em><span class="optional">[</span><span class="optional">]</span>, <em>kwargs={}</em>, <em>errback=None</em>, <em>max_retries=None</em>, <em>interval_start=2</em>, <em>interval_step=2</em>, <em>interval_max=30</em><big>)</big><a class="headerlink" href="#kombu.utils.retry_over_time" title="Permalink to this definition">¶</a></dt>
+<tt class="descclassname">kombu.utils.</tt><tt class="descname">retry_over_time</tt><big>(</big><em>fun</em>, <em>catch</em>, <em>args=</em><span class="optional">[</span><span class="optional">]</span>, <em>kwargs={}</em>, <em>errback=None</em>, <em>max_retries=None</em>, <em>interval_start=2</em>, <em>interval_step=2</em>, <em>interval_max=30</em>, <em>callback=None</em><big>)</big><a class="headerlink" href="#kombu.utils.retry_over_time" title="Permalink to this definition">¶</a></dt>
<dd><p>Retry the function over and over until max retries is exceeded.</p>
<p>For each retry we sleep a for a while before we try again, this interval
is increased for every retry until the max seconds is reached.</p>
@@ -260,13 +260,13 @@ context manager.</p>
<li class="right" >
<a href="kombu.syn.html" title="Async Utilities - kombu.syn"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/reference/kombu.utils.limits.html b/reference/kombu.utils.limits.html
index 2be6e719..5dc32004 100644
--- a/reference/kombu.utils.limits.html
+++ b/reference/kombu.utils.limits.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Rate limiting - kombu.utils.limits &mdash; Kombu 2.1.3 documentation</title>
+ <title>Rate limiting - kombu.utils.limits &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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="Utilities - kombu.utils" href="kombu.utils.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="kombu.utils.html" title="Utilities - kombu.utils"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">API Reference</a> &raquo;</li>
</ul>
</div>
@@ -190,13 +190,13 @@ available.</p>
<li class="right" >
<a href="kombu.utils.html" title="Utilities - kombu.utils"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >API Reference</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/search.html b/search.html
index c284e0e8..4305be90 100644
--- a/search.html
+++ b/search.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Search &mdash; Kombu 2.1.3 documentation</title>
+ <title>Search &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -25,7 +25,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 2.1.3 documentation" href="index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="index.html" />
<script type="text/javascript">
jQuery(function() { Search.loadIndex("searchindex.js"); });
</script>
@@ -42,7 +42,7 @@
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -95,12 +95,12 @@
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
- <li><a href="index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/searchindex.js b/searchindex.js
index 4e46858e..5570653c 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({objects:{"kombu.transport.virtual.scheduling.FairCycle":{close:[51,1,1,""],get:[51,1,1,""]},"kombu.transport.django.models":{Queue:[24,5,1,""],Message:[24,5,1,""]},"kombu.connection.ChannelPool":{release:[56,1,1,""],acquire:[56,1,1,""],LimitExceeded:[56,2,1,""]},"kombu.transport.amqplib.Connection":{dispatch_method:[18,1,1,""],drain_events:[18,1,1,""],wait_multi:[18,1,1,""],read_timeout:[18,1,1,""],close:[18,1,1,""],channel:[18,1,1,""],wait:[18,1,1,""]},"kombu.transport.SQS.Channel":{queue_name_prefix:[8,2,1,""],conninfo:[8,2,1,""],exchange_delete:[8,1,1,""],basic_ack:[8,1,1,""],close:[8,1,1,""],transport_options:[8,2,1,""],default_region:[8,2,1,""],supports_fanout:[8,2,1,""],region:[8,2,1,""],sqs:[8,2,1,""],entity_name:[8,1,1,""],basic_cancel:[8,1,1,""],basic_consume:[8,1,1,""],sdb:[8,2,1,""],table:[8,2,1,""],get_table:[8,1,1,""],Table:[8,5,1,""],get_exchanges:[8,1,1,""],visibility_timeout:[8,2,1,""],domain_format:[8,2,1,""]},"kombu.transport.librabbitmq.Transport.Connection.Channel":{Message:[54,5,1,""],prepare_message:[54,1,1,""]},"kombu.transport.SQS.Transport.Channel":{transport_options:[8,2,1,""],conninfo:[8,2,1,""],Table:[8,5,1,""],exchange_delete:[8,1,1,""],basic_ack:[8,1,1,""],entity_name:[8,1,1,""],queue_name_prefix:[8,2,1,""],sqs:[8,2,1,""],supports_fanout:[8,2,1,""],region:[8,2,1,""],default_region:[8,2,1,""],basic_cancel:[8,1,1,""],basic_consume:[8,1,1,""],sdb:[8,2,1,""],close:[8,1,1,""],get_table:[8,1,1,""],table:[8,2,1,""],get_exchanges:[8,1,1,""],visibility_timeout:[8,2,1,""],domain_format:[8,2,1,""]},"kombu.transport":{sqlalchemy:[1,0,1,""],amqplib:[18,0,1,""],SQS:[8,0,1,""],mongodb:[6,0,1,""],couchdb:[28,0,1,""],redis:[41,0,1,""],virtual:[3,0,1,""],django:[40,0,1,""],DEFAULT_TRANSPORT:[10,3,1,""],librabbitmq:[54,0,1,""],beanstalk:[47,0,1,""],base:[31,0,1,""],pika2:[42,0,1,""],get_transport_cls:[10,4,1,""],memory:[15,0,1,""],TRANSPORT_ALIASES:[10,3,1,""],resolve_transport:[10,4,1,""]},"kombu.log.LogMixin":{info:[44,1,1,""],warn:[44,1,1,""],get_loglevel:[44,1,1,""],log:[44,1,1,""],annotate:[44,1,1,""],get_logger:[44,1,1,""],critical:[44,1,1,""],logger_name:[44,2,1,""],error:[44,1,1,""],debug:[44,1,1,""],logger:[44,2,1,""],is_enabled_for:[44,1,1,""]},"kombu.transport.redis.Channel":{pipeline:[41,1,1,""],keyprefix_queue:[41,2,1,""],sep:[41,2,1,""],supports_fanout:[41,2,1,""],get_table:[41,1,1,""],subclient:[41,2,1,""],client:[41,2,1,""],basic_consume:[41,1,1,""],active_queues:[41,2,1,""],close:[41,1,1,""],basic_cancel:[41,1,1,""]},"kombu.transport.virtual.Channel":{do_restore:[3,2,1,""],qos:[3,2,1,""],basic_ack:[3,1,1,""],basic_reject:[3,1,1,""],basic_get:[3,1,1,""],close:[3,1,1,""],basic_recover:[3,1,1,""],exchange_declare:[3,1,1,""],exchange_delete:[3,1,1,""],queue_bind:[3,1,1,""],drain_events:[3,1,1,""],state:[3,2,1,""],basic_publish:[3,1,1,""],basic_consume:[3,1,1,""],queue_delete:[3,1,1,""],queue_declare:[3,1,1,""],queue_purge:[3,1,1,""],basic_qos:[3,1,1,""],basic_cancel:[3,1,1,""],message_to_python:[3,1,1,""],get_table:[3,1,1,""],exchange_types:[3,2,1,""],flow:[3,1,1,""],"typeof":[3,1,1,""],Message:[3,2,1,""],prepare_message:[3,1,1,""]},"kombu.transport.pika2.Connection":{close:[42,1,1,""],drain_events:[42,1,1,""],channel:[42,1,1,""],Channel:[42,5,1,""]},"kombu.transport.virtual.scheduling":{FairCycle:[51,5,1,""]},"kombu.pidbox.Mailbox":{Node:[43,1,1,""],abcast:[43,1,1,""],get_reply_queue:[43,1,1,""],exchange:[43,2,1,""],multi_call:[43,1,1,""],namespace:[43,2,1,""],cast:[43,1,1,""],connection:[43,2,1,""],call:[43,1,1,""],get_queue:[43,1,1,""],reply_exchange:[43,2,1,""],type:[43,2,1,""]},"kombu.simple.SimpleQueue":{queue_opts:[53,2,1,""],qsize:[53,1,1,""],producer:[53,2,1,""],get:[53,1,1,""],clear:[53,1,1,""],get_nowait:[53,1,1,""],queue:[53,2,1,""],exchange_opts:[53,2,1,""],channel:[53,2,1,""],put:[53,1,1,""],close:[53,1,1,""],consumer:[53,2,1,""],no_ack:[53,2,1,""],"__len__":[53,1,1,""]},"kombu.transport.django.Channel":{basic_consume:[40,1,1,""],refresh_connection:[40,1,1,""]},"kombu.transport.pika2.Transport":{channel_errors:[42,2,1,""],drain_events:[42,1,1,""],establish_connection:[42,1,1,""],default_connection_params:[42,2,1,""],Connection:[42,5,1,""],connection_errors:[42,2,1,""],create_channel:[42,1,1,""],default_port:[42,2,1,""],Message:[42,5,1,""],close_connection:[42,1,1,""]},"kombu.transport.redis.Transport.Channel":{pipeline:[41,1,1,""],keyprefix_queue:[41,2,1,""],sep:[41,2,1,""],supports_fanout:[41,2,1,""],get_table:[41,1,1,""],subclient:[41,2,1,""],client:[41,2,1,""],basic_consume:[41,1,1,""],active_queues:[41,2,1,""],close:[41,1,1,""],basic_cancel:[41,1,1,""]},"kombu.transport.librabbitmq.Connection":{frame_max:[54,2,1,""],channel_max:[54,2,1,""],drain_events:[54,1,1,""],channels:[54,2,1,""],Channel:[54,5,1,""],reconnect:[54,1,1,""],heartbeat:[54,2,1,""],close:[54,1,1,""],channel:[54,1,1,""]},"kombu.transport.amqplib.Transport.Connection":{read_timeout:[18,1,1,""],drain_events:[18,1,1,""],wait_multi:[18,1,1,""],channel:[18,1,1,""]},"kombu.transport.sqlalchemy.Channel":{session:[1,2,1,""]},"kombu.transport.virtual.Message.MessageStateError":{message:[3,2,1,""],args:[3,2,1,""]},"kombu.transport.amqplib.Transport":{channel_errors:[18,2,1,""],drain_events:[18,1,1,""],verify_connection:[18,1,1,""],establish_connection:[18,1,1,""],default_connection_params:[18,2,1,""],Connection:[18,5,1,""],connection_errors:[18,2,1,""],create_channel:[18,1,1,""],default_port:[18,2,1,""],is_alive:[18,1,1,""],close_connection:[18,1,1,""]},"kombu.transport.SQS.Transport":{connection_errors:[8,2,1,""],default_port:[8,2,1,""],polling_interval:[8,2,1,""],Channel:[8,5,1,""],channel_errors:[8,2,1,""]},"kombu.transport.pika2.Transport.Connection.Channel":{basic_qos:[42,1,1,""],basic_get:[42,1,1,""],channel_id:[42,2,1,""],basic_publish:[42,1,1,""],basic_consume:[42,1,1,""],message_to_python:[42,1,1,""],close:[42,1,1,""],Message:[42,5,1,""],prepare_message:[42,1,1,""],queue_purge:[42,1,1,""]},"kombu.transport.pika2.Channel":{basic_qos:[42,1,1,""],basic_get:[42,1,1,""],channel_id:[42,2,1,""],basic_publish:[42,1,1,""],basic_consume:[42,1,1,""],message_to_python:[42,1,1,""],queue_purge:[42,1,1,""],close:[42,1,1,""],Message:[42,5,1,""],prepare_message:[42,1,1,""]},"kombu.transport.redis.Transport":{default_port:[41,2,1,""],Channel:[41,5,1,""],polling_interval:[41,2,1,""]},"kombu.transport.virtual.exchange.ExchangeType":{type:[46,2,1,""],equivalent:[46,1,1,""],lookup:[46,1,1,""],prepare_bind:[46,1,1,""]},"kombu.transport.couchdb.Channel":{client:[28,2,1,""],view_created:[28,2,1,""]},"kombu.transport.SQS.Channel.Table":{routes_for:[8,1,1,""],queue_bind:[8,1,1,""],create_binding:[8,1,1,""],select:[8,1,1,""],queue_delete:[8,1,1,""],exchange_delete:[8,1,1,""],get_exchanges:[8,1,1,""],get_item:[8,1,1,""],get_queue:[8,1,1,""]},"kombu.transport.base.Message":{body:[31,2,1,""],ack:[31,1,1,""],delivery_info:[31,2,1,""],acknowledged:[31,2,1,""],properties:[31,2,1,""],decode:[31,1,1,""],headers:[31,2,1,""],content_encoding:[31,2,1,""],content_type:[31,2,1,""],reject:[31,1,1,""],delivery_tag:[31,2,1,""],requeue:[31,1,1,""],payload:[31,2,1,""],channel:[31,2,1,""]},"kombu.utils.functional.promise":{evaluate:[13,1,1,""]},"kombu.compat.Publisher":{compression:[55,2,1,""],exchange:[55,2,1,""],serializer:[55,2,1,""],auto_delete:[55,2,1,""],send:[55,1,1,""],auto_declare:[55,2,1,""],routing_key:[55,2,1,""],publish:[55,1,1,""],revive:[55,1,1,""],connection:[55,2,1,""],declare:[55,1,1,""],channel:[55,2,1,""],release:[55,1,1,""],close:[55,1,1,""],exchange_type:[55,2,1,""],on_return:[55,2,1,""],durable:[55,2,1,""],maybe_declare:[55,1,1,""],backend:[55,2,1,""]},"kombu.connection.ConnectionPool":{release:[56,1,1,""],acquire:[56,1,1,""],LimitExceeded:[56,2,1,""]},"kombu.transport.amqplib":{Message:[18,5,1,""],Connection:[18,5,1,""],Transport:[18,5,1,""],Channel:[18,5,1,""]},"kombu.connection.BrokerConnection":{SimpleBuffer:[56,1,1,""],info:[56,1,1,""],create_transport:[56,1,1,""],SimpleQueue:[56,1,1,""],channel_errors:[56,2,1,""],drain_events:[56,1,1,""],transport:[56,2,1,""],host:[56,2,1,""],ensure_connection:[56,1,1,""],connection:[56,2,1,""],connection_errors:[56,2,1,""],ensure:[56,1,1,""],Pool:[56,1,1,""],get_transport_cls:[56,1,1,""],ChannelPool:[56,1,1,""],release:[56,1,1,""],clone:[56,1,1,""],channel:[56,1,1,""],connect:[56,1,1,""]},"kombu.entity":{Queue:[25,5,1,""],Exchange:[25,5,1,""]},"kombu.transport.SQS":{Channel:[8,5,1,""],Transport:[8,5,1,""]},"kombu.pools":{reset:[37,4,1,""],PoolGroup:[37,5,1,""],ProducerPool:[37,5,1,""],register_group:[37,4,1,""],get_limit:[37,4,1,""],set_limit:[37,4,1,""]},"kombu.transport.sqlalchemy":{models:[48,0,1,""],Transport:[1,5,1,""],Channel:[1,5,1,""]},"kombu.utils.finalize.Finalize":{cancel:[32,1,1,""],still_active:[32,1,1,""]},"kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError":{message:[54,2,1,""],args:[54,2,1,""]},"kombu.transport.pika2.Transport.Connection":{close:[42,1,1,""],drain_events:[42,1,1,""],Channel:[42,5,1,""],channel:[42,1,1,""]},"kombu.serialization":{register:[11,4,1,""],decode:[11,4,1,""],SerializerNotInstalled:[11,6,1,""],encode:[11,4,1,""],raw_encode:[11,4,1,""],registry:[11,3,1,""]},"kombu.transport.mongodb.Transport":{default_port:[6,2,1,""],connection_errors:[6,2,1,""],polling_interval:[6,2,1,""],Channel:[6,5,1,""],channel_errors:[6,2,1,""]},"kombu.utils.limits.TokenBucket":{expected_time:[58,1,1,""],timestamp:[58,2,1,""],capacity:[58,2,1,""],can_consume:[58,1,1,""],fill_rate:[58,2,1,""]},"kombu.transport.virtual.Transport":{close_channel:[3,1,1,""],drain_events:[3,1,1,""],polling_interval:[3,2,1,""],establish_connection:[3,1,1,""],close_connection:[3,1,1,""],state:[3,2,1,""],create_channel:[3,1,1,""],default_port:[3,2,1,""],cycle:[3,2,1,""],Channel:[3,2,1,""],Cycle:[3,2,1,""]},"kombu.compat":{Publisher:[55,5,1,""],Consumer:[55,5,1,""],ConsumerSet:[55,5,1,""]},"kombu.transport.couchdb":{create_message_view:[28,4,1,""],Transport:[28,5,1,""],Channel:[28,5,1,""]},"kombu.transport.virtual.exchange.FanoutExchange":{lookup:[46,1,1,""],deliver:[46,1,1,""],type:[46,2,1,""]},"kombu.simple.SimpleBuffer":{queue_opts:[53,2,1,""],qsize:[53,1,1,""],producer:[53,2,1,""],get:[53,1,1,""],clear:[53,1,1,""],get_nowait:[53,1,1,""],queue:[53,2,1,""],exchange_opts:[53,2,1,""],channel:[53,2,1,""],put:[53,1,1,""],close:[53,1,1,""],consumer:[53,2,1,""],no_ack:[53,2,1,""],"__len__":[53,1,1,""]},"kombu.transport.librabbitmq.Connection.Channel.Message":{body:[54,2,1,""],reject_log_error:[54,1,1,""],reject:[54,1,1,""],ack:[54,1,1,""],delivery_info:[54,2,1,""],MessageStateError:[54,6,1,""],acknowledged:[54,2,1,""],ack_log_error:[54,1,1,""],payload:[54,2,1,""],decode:[54,1,1,""],headers:[54,2,1,""],content_encoding:[54,2,1,""],content_type:[54,2,1,""],delivery_tag:[54,2,1,""],requeue:[54,1,1,""],properties:[54,2,1,""],channel:[54,2,1,""]},"kombu.transport.mongodb.Transport.Channel":{get_table:[6,1,1,""],supports_fanout:[6,2,1,""],client:[6,2,1,""],queue_delete:[6,1,1,""],close:[6,1,1,""]},"kombu.transport.django.managers":{MessageManager:[30,5,1,""],select_for_update:[30,4,1,""],QueueManager:[30,5,1,""]},"kombu.transport.sqlalchemy.models":{Queue:[48,5,1,""],Message:[48,5,1,""]},"kombu.transport.sqlalchemy.models.Message":{sent_at:[48,2,1,""],id:[48,2,1,""],visible:[48,2,1,""],version:[48,2,1,""],queue_id:[48,2,1,""],payload:[48,2,1,""]},"kombu.transport.memory.Transport":{state:[15,2,1,""],Channel:[15,5,1,""]},"kombu.messaging.Producer":{compression:[2,2,1,""],exchange:[2,2,1,""],serializer:[2,2,1,""],revive:[2,1,1,""],publish:[2,1,1,""],routing_key:[2,2,1,""],auto_declare:[2,2,1,""],on_return:[2,2,1,""],declare:[2,1,1,""],channel:[2,2,1,""]},"kombu.utils.limits":{TokenBucket:[58,5,1,""]},"kombu.transport.django.Transport":{default_port:[40,2,1,""],connection_errors:[40,2,1,""],polling_interval:[40,2,1,""],Channel:[40,5,1,""],channel_errors:[40,2,1,""]},"kombu.transport.SQS.Transport.Channel.Table":{routes_for:[8,1,1,""],queue_bind:[8,1,1,""],create_binding:[8,1,1,""],queue_delete:[8,1,1,""],select:[8,1,1,""],exchange_delete:[8,1,1,""],get_exchanges:[8,1,1,""],get_item:[8,1,1,""],get_queue:[8,1,1,""]},"kombu.common":{collect_replies:[12,4,1,""],itermessages:[12,4,1,""],uuid:[12,4,1,""],Broadcast:[12,5,1,""],insured:[12,4,1,""],maybe_declare:[12,4,1,""],ipublish:[12,4,1,""],send_reply:[12,4,1,""],entry_to_queue:[12,4,1,""],isend_reply:[12,4,1,""]},"kombu.pidbox":{Node:[43,5,1,""],Mailbox:[43,5,1,""]},"kombu.transport.virtual.QoS":{get:[3,1,1,""],ack:[3,1,1,""],restore_unacked:[3,1,1,""],restore_unacked_once:[3,1,1,""],prefetch_count:[3,2,1,""],can_consume:[3,1,1,""],reject:[3,1,1,""],append:[3,1,1,""]},"kombu.transport.virtual.Message":{body:[3,2,1,""],reject_log_error:[3,1,1,""],payload:[3,2,1,""],serializable:[3,1,1,""],ack:[3,1,1,""],delivery_info:[3,2,1,""],MessageStateError:[3,6,1,""],acknowledged:[3,2,1,""],ack_log_error:[3,1,1,""],properties:[3,2,1,""],decode:[3,1,1,""],headers:[3,2,1,""],content_encoding:[3,2,1,""],content_type:[3,2,1,""],reject:[3,1,1,""],requeue:[3,1,1,""],delivery_tag:[3,2,1,""],channel:[3,2,1,""]},"kombu.pidbox.Node":{handle:[43,1,1,""],handlers:[43,2,1,""],dispatch_from_message:[43,1,1,""],hostname:[43,2,1,""],state:[43,2,1,""],dispatch:[43,1,1,""],mailbox:[43,2,1,""],handle_call:[43,1,1,""],handler:[43,1,1,""],handle_cast:[43,1,1,""],handle_message:[43,1,1,""],reply:[43,1,1,""],Consumer:[43,1,1,""],channel:[43,2,1,""],listen:[43,1,1,""]},"kombu.exceptions":{TimeoutError:[0,2,1,""],MessageStateError:[0,6,1,""],ConnectionLimitExceeded:[0,6,1,""],LimitExceeded:[0,6,1,""],ChannelLimitExceeded:[0,6,1,""],NotBoundError:[0,6,1,""]},"kombu.utils.finalize":{Finalize:[32,5,1,""]},"kombu.transport.memory":{Transport:[15,5,1,""],Channel:[15,5,1,""]},"kombu.transport.librabbitmq.Connection.Channel":{no_ack_consumers:[54,2,1,""],basic_ack:[54,1,1,""],basic_reject:[54,1,1,""],basic_get:[54,1,1,""],is_open:[54,2,1,""],close:[54,1,1,""],exchange_declare:[54,1,1,""],exchange_delete:[54,1,1,""],queue_bind:[54,1,1,""],queue_unbind:[54,1,1,""],list_bindings:[54,1,1,""],basic_publish:[54,1,1,""],basic_consume:[54,1,1,""],queue_delete:[54,1,1,""],queue_declare:[54,1,1,""],queue_purge:[54,1,1,""],basic_qos:[54,1,1,""],after_reply_message_received:[54,1,1,""],basic_cancel:[54,1,1,""],Consumer:[54,1,1,""],Producer:[54,1,1,""],flow:[54,1,1,""],Message:[54,5,1,""],prepare_message:[54,1,1,""]},"kombu.transport.beanstalk":{Transport:[47,5,1,""],Channel:[47,5,1,""]},"kombu.pools.ProducerPool":{prepare:[37,1,1,""],Producer:[37,1,1,""],setup:[37,1,1,""],release:[37,1,1,""],"new":[37,1,1,""],create_producer:[37,1,1,""]},"kombu.transport.base.Transport":{close_channel:[31,1,1,""],channel_errors:[31,2,1,""],drain_events:[31,1,1,""],establish_connection:[31,1,1,""],client:[31,2,1,""],connection_errors:[31,2,1,""],create_channel:[31,1,1,""],default_port:[31,2,1,""],close_connection:[31,1,1,""]},"kombu.clocks":{LamportClock:[27,5,1,""]},"kombu.transport.librabbitmq.Channel":{Message:[54,5,1,""],prepare_message:[54,1,1,""]},"kombu.transport.memory.Transport.Channel":{queues:[15,2,1,""],do_restore:[15,2,1,""],after_reply_message_received:[15,1,1,""]},"kombu.pools.PoolGroup":{create:[37,1,1,""]},"kombu.transport.pika2.Connection.Channel":{basic_qos:[42,1,1,""],basic_get:[42,1,1,""],channel_id:[42,2,1,""],basic_publish:[42,1,1,""],basic_consume:[42,1,1,""],message_to_python:[42,1,1,""],queue_purge:[42,1,1,""],close:[42,1,1,""],Message:[42,5,1,""],prepare_message:[42,1,1,""]},"kombu.transport.virtual.exchange.TopicExchange":{wildcards:[46,2,1,""],prepare_bind:[46,1,1,""],deliver:[46,1,1,""],lookup:[46,1,1,""],key_to_pattern:[46,1,1,""],type:[46,2,1,""]},"kombu.transport.django.management.commands":{clean_kombu_messages:[5,0,1,""]},"kombu.messaging.Consumer":{qos:[2,1,1,""],consume:[2,1,1,""],register_callback:[2,1,1,""],callbacks:[2,2,1,""],receive:[2,1,1,""],queues:[2,2,1,""],cancel_by_queue:[2,1,1,""],flow:[2,1,1,""],revive:[2,1,1,""],declare:[2,1,1,""],purge:[2,1,1,""],cancel:[2,1,1,""],channel:[2,2,1,""],on_decode_error:[2,2,1,""],recover:[2,1,1,""],no_ack:[2,2,1,""],auto_declare:[2,2,1,""]},"kombu.transport.amqplib.Channel":{basic_cancel:[18,1,1,""],basic_consume:[18,1,1,""],message_to_python:[18,1,1,""],close:[18,1,1,""],Message:[18,5,1,""],events:[18,2,1,""],prepare_message:[18,1,1,""]},"kombu.transport.django.models.Message":{queue:[24,2,1,""],MultipleObjectsReturned:[24,6,1,""],objects:[24,2,1,""],DoesNotExist:[24,6,1,""]},"kombu.utils.compat.CompatOrderedDict":{fromkeys:[19,7,1,""],setdefault:[19,1,1,""],keys:[19,1,1,""],items:[19,1,1,""],clear:[19,1,1,""],popitem:[19,1,1,""],update:[19,1,1,""],pop:[19,1,1,""],values:[19,1,1,""],itervalues:[19,1,1,""],iteritems:[19,1,1,""],copy:[19,1,1,""],iterkeys:[19,1,1,""]},"kombu.transport.virtual.BrokerState":{bindings:[3,2,1,""],exchanges:[3,2,1,""]},"kombu.transport.librabbitmq.Transport":{channel_errors:[54,2,1,""],drain_events:[54,1,1,""],establish_connection:[54,1,1,""],default_connection_params:[54,2,1,""],Connection:[54,5,1,""],connection_errors:[54,2,1,""],create_channel:[54,1,1,""],default_port:[54,2,1,""],close_connection:[54,1,1,""]},"kombu.transport.sqlalchemy.Transport.Channel":{session:[1,2,1,""]},"kombu.log":{setup_logging:[44,4,1,""],LogMixin:[44,5,1,""],get_loglevel:[44,4,1,""]},"kombu.connection":{ChannelPool:[56,5,1,""],ConnectionPool:[56,5,1,""],BrokerConnection:[56,5,1,""]},"kombu.transport.sqlalchemy.models.Queue":{messages:[48,2,1,""],id:[48,2,1,""],name:[48,2,1,""]},"kombu.transport.virtual.exchange.DirectExchange":{lookup:[46,1,1,""],type:[46,2,1,""],deliver:[46,1,1,""]},"kombu.transport.django":{models:[24,0,1,""],managers:[30,0,1,""],Channel:[40,5,1,""],Transport:[40,5,1,""]},"kombu.compat.ConsumerSet":{add_consumer_from_dict:[55,1,1,""],qos:[55,1,1,""],consume:[55,1,1,""],cancel_by_queue:[55,1,1,""],cancel:[55,1,1,""],consuming_from:[55,1,1,""],on_decode_error:[55,2,1,""],close:[55,1,1,""],recover:[55,1,1,""],auto_declare:[55,2,1,""],revive:[55,1,1,""],channel:[55,2,1,""],register_callback:[55,1,1,""],callbacks:[55,2,1,""],add_queue:[55,1,1,""],iterconsume:[55,1,1,""],add_consumer:[55,1,1,""],receive:[55,1,1,""],queues:[55,2,1,""],flow:[55,1,1,""],no_ack:[55,2,1,""],purge:[55,1,1,""],connection:[55,2,1,""],discard_all:[55,1,1,""],declare:[55,1,1,""]},"kombu.transport.django.models.Queue":{MultipleObjectsReturned:[24,6,1,""],objects:[24,2,1,""],messages:[24,2,1,""],DoesNotExist:[24,6,1,""]},"kombu.transport.sqlalchemy.Transport":{channel_errors:[1,2,1,""],connection_errors:[1,2,1,""],Channel:[1,5,1,""],default_port:[1,2,1,""]},"kombu.transport.couchdb.Transport.Channel":{client:[28,2,1,""],view_created:[28,2,1,""]},"kombu.abstract.MaybeChannelBound":{is_bound:[22,2,1,""],when_bound:[22,1,1,""],bind:[22,1,1,""],revive:[22,1,1,""],maybe_bind:[22,1,1,""],can_cache_declaration:[22,2,1,""],channel:[22,2,1,""]},"kombu.transport.beanstalk.Transport.Channel":{close:[47,1,1,""],client:[47,2,1,""]},"kombu.entity.Queue":{exclusive:[25,2,1,""],when_bound:[25,1,1,""],consume:[25,1,1,""],auto_delete:[25,2,1,""],attrs:[25,2,1,""],cancel:[25,1,1,""],queue_bind:[25,1,1,""],durable:[25,2,1,""],exchange:[25,2,1,""],routing_key:[25,2,1,""],queue_declare:[25,1,1,""],channel:[25,2,1,""],get:[25,1,1,""],maybe_bind:[25,1,1,""],binding_arguments:[25,2,1,""],unbind:[25,1,1,""],name:[25,2,1,""],declare:[25,1,1,""],purge:[25,1,1,""],alias:[25,2,1,""],queue_arguments:[25,2,1,""],can_cache_declaration:[25,2,1,""],no_ack:[25,2,1,""],"delete":[25,1,1,""]},"kombu.transport.pika2":{Transport:[42,5,1,""],Message:[42,5,1,""],Connection:[42,5,1,""],Channel:[42,5,1,""]},"kombu.transport.librabbitmq.Transport.Connection":{Channel:[54,5,1,""]},"kombu.entity.Exchange":{name:[25,2,1,""],arguments:[25,2,1,""],auto_delete:[25,2,1,""],delivery_mode:[25,2,1,""],PERSISTENT_DELIVERY_MODE:[25,2,1,""],publish:[25,1,1,""],declare:[25,1,1,""],TRANSIENT_DELIVERY_MODE:[25,2,1,""],maybe_bind:[25,1,1,""],attrs:[25,2,1,""],can_cache_declaration:[25,2,1,""],Message:[25,1,1,""],type:[25,2,1,""],durable:[25,2,1,""],channel:[25,2,1,""],"delete":[25,1,1,""]},"kombu.transport.django.managers.MessageManager":{connection_for_write:[30,1,1,""],cleanup:[30,1,1,""],cleanup_every:[30,2,1,""],pop:[30,1,1,""]},"kombu.transport.beanstalk.Transport":{channel_errors:[47,2,1,""],connection_errors:[47,2,1,""],default_port:[47,2,1,""],Channel:[47,5,1,""],polling_interval:[47,2,1,""]},"kombu.transport.librabbitmq":{Message:[54,5,1,""],Channel:[54,5,1,""],Connection:[54,5,1,""],Transport:[54,5,1,""]},"kombu.transport.beanstalk.Channel":{close:[47,1,1,""],client:[47,2,1,""]},"kombu.abstract":{MaybeChannelBound:[22,5,1,""]},"kombu.mixins.ConsumerMixin":{connect_max_retries:[23,2,1,""],run:[23,1,1,""],consume:[23,1,1,""],should_stop:[23,2,1,""],restart_limit:[23,2,1,""],on_connection_revived:[23,1,1,""],get_consumers:[23,1,1,""],establish_connection:[23,1,1,""],on_iteration:[23,1,1,""],on_consume_ready:[23,1,1,""],on_decode_error:[23,1,1,""],on_connection_error:[23,1,1,""],connection_errors:[23,2,1,""],on_consume_end:[23,1,1,""],maybe_conn_error:[23,1,1,""],channel_errors:[23,2,1,""],extra_context:[23,1,1,""],Consumer:[23,1,1,""]},"kombu.simple":{SimpleBuffer:[53,5,1,""],SimpleQueue:[53,5,1,""]},"kombu.transport.memory.Channel":{queues:[15,2,1,""],do_restore:[15,2,1,""],after_reply_message_received:[15,1,1,""]},"kombu.transport.virtual.exchange":{DirectExchange:[46,5,1,""],ExchangeType:[46,5,1,""],FanoutExchange:[46,5,1,""],TopicExchange:[46,5,1,""]},"kombu.utils.url":{parse_url:[7,4,1,""]},"kombu.compression":{encoders:[45,4,1,""],get_encoder:[45,4,1,""],register:[45,4,1,""],compress:[45,4,1,""],decompress:[45,4,1,""],get_decoder:[45,4,1,""]},"kombu.transport.redis":{Channel:[41,5,1,""],Transport:[41,5,1,""]},kombu:{compat:[55,0,1,""],compression:[45,0,1,""],simple:[53,0,1,""],pools:[37,0,1,""],"abstract":[22,0,1,""],mixins:[23,0,1,""],syn:[9,0,1,""],entity:[25,0,1,""],exceptions:[0,0,1,""],connection:[56,0,1,""],clocks:[27,0,1,""],common:[12,0,1,""],messaging:[39,0,1,""],pidbox:[43,0,1,""],serialization:[11,0,1,""],utils:[38,0,1,""],transport:[10,0,1,""],log:[44,0,1,""]},"kombu.utils.debug":{setup_logging:[52,4,1,""],Logwrapped:[52,5,1,""]},"kombu.clocks.LamportClock":{forward:[27,1,1,""],adjust:[27,1,1,""],value:[27,2,1,""]},"kombu.syn":{detect_environment:[9,4,1,""]},"kombu.transport.mongodb":{Channel:[6,5,1,""],Transport:[6,5,1,""]},"kombu.compat.Consumer":{exclusive:[55,2,1,""],qos:[55,1,1,""],consume:[55,1,1,""],no_ack:[55,2,1,""],auto_delete:[55,2,1,""],cancel_by_queue:[55,1,1,""],routing_key:[55,2,1,""],on_decode_error:[55,2,1,""],consuming_from:[55,1,1,""],cancel:[55,1,1,""],close:[55,1,1,""],recover:[55,1,1,""],auto_declare:[55,2,1,""],purge:[55,1,1,""],durable:[55,2,1,""],revive:[55,1,1,""],iterqueue:[55,1,1,""],channel:[55,2,1,""],register_callback:[55,1,1,""],exchange:[55,2,1,""],callbacks:[55,2,1,""],wait:[55,1,1,""],add_queue:[55,1,1,""],iterconsume:[55,1,1,""],process_next:[55,1,1,""],receive:[55,1,1,""],queues:[55,2,1,""],flow:[55,1,1,""],fetch:[55,1,1,""],queue:[55,2,1,""],connection:[55,2,1,""],discard_all:[55,1,1,""],exchange_type:[55,2,1,""],declare:[55,1,1,""]},"kombu.messaging":{Consumer:[2,5,1,""],Producer:[2,5,1,""]},"kombu.transport.django.Transport.Channel":{basic_consume:[40,1,1,""],refresh_connection:[40,1,1,""]},"kombu.transport.django.managers.QueueManager":{purge:[30,1,1,""],fetch:[30,1,1,""],publish:[30,1,1,""],size:[30,1,1,""]},"kombu.utils.functional":{promise:[13,5,1,""],maybe_promise:[13,4,1,""]},"kombu.utils":{compat:[19,0,1,""],reprcall:[38,4,1,""],kwdict:[38,4,1,""],finalize:[32,0,1,""],limits:[58,0,1,""],encoding:[4,0,1,""],url:[7,0,1,""],emergency_dump_state:[38,4,1,""],functional:[13,0,1,""],fxrange:[38,4,1,""],nested:[38,4,1,""],EqualityDict:[38,5,1,""],cached_property:[38,2,1,""],say:[38,4,1,""],maybe_list:[38,4,1,""],debug:[52,0,1,""],retry_over_time:[38,4,1,""],fxrangemax:[38,4,1,""],reprkwargs:[38,4,1,""],uuid:[38,4,1,""]},"kombu.transport.mongodb.Channel":{get_table:[6,1,1,""],close:[6,1,1,""],client:[6,2,1,""],queue_delete:[6,1,1,""],supports_fanout:[6,2,1,""]},"kombu.utils.encoding":{str_to_bytes:[4,4,1,""],bytes_to_str:[4,4,1,""],safe_str:[4,4,1,""],default_encoding:[4,4,1,""],default_encode:[4,4,1,""],ensure_bytes:[4,4,1,""],from_utf8:[4,4,1,""],safe_repr:[4,4,1,""]},"kombu.transport.couchdb.Transport":{default_port:[28,2,1,""],connection_errors:[28,2,1,""],polling_interval:[28,2,1,""],Channel:[28,5,1,""],channel_errors:[28,2,1,""]},"kombu.transport.virtual":{AbstractChannel:[3,5,1,""],exchange:[46,0,1,""],BrokerState:[3,5,1,""],Channel:[3,5,1,""],scheduling:[51,0,1,""],QoS:[3,5,1,""],Message:[3,5,1,""],Transport:[3,5,1,""]},"kombu.mixins":{ConsumerMixin:[23,5,1,""]},"kombu.utils.compat":{LifoQueue:[19,5,1,""],CompatOrderedDict:[19,5,1,""]},"kombu.transport.base":{Message:[31,5,1,""],Transport:[31,5,1,""]}},terms:{fanoutexchang:[3,46],interchang:29,four:[16,25],prefix:50,sleep:[3,38,56,50],sqserror:8,typeerror:38,under:[16,57],spec:[55,2,39],retry_polici:[55,2,39,12,50],everi:[13,50,16,34,17,38,23,57,12],queue_id:[48,24],affect:[16,2,49,55,50],exchange_opt:[53,56],rabbitmq:[2,50,16,49,33,25,55],is_open:54,use_default_limit:57,queue_argu:25,maybe_list:38,direct:[43,16,3,35,20,21,54,25,55,46,34],preconditionfail:28,second:[50,20,38,23,56,58],even:[16,20,11,50,25],aim:16,dialogu:25,eventlet:[23,50],logmixin:44,connection_error:[47,1,50,54,31,18,8,23,6,40,56,28,42],key_to_pattern:46,"new":[2,11,16,34,49,50,45,37,25,55,56,57,19,58],ever:[50,25],abov:[29,34,17],never:[56,34],here:[29,57,12],"__hash__":50,path:[20,10,50],interpret:[16,25],jame:50,emergency_dump_st:38,duplicateconsumertag:42,findandmodifi:50,celerybeat:43,articl:[16,57,25],"byte":50,unit:16,highli:16,describ:[11,8,25],would:[11,34,23,50],jaekel:50,call:[0,13,29,2,16,34,49,50,43,20,22,23,25,55,39,56,57],until:[2,34,49,38,25,55,56,57],establis:50,type:[43,2,45,46,47,16,3,50,51,35,18,17,20,54,39,25,55,11],channelerror:54,science_new:25,isend_repli:12,get_exchang:8,relat:[27,50],warn:[2,50,49,44,55,56,58],phone:34,jpg:17,loss:[55,2,49,39,50],hold:25,set_limit:[37,57,50],must:[2,31,50,16,3,49,18,20,38,54,23,25,55,39,56,34],join:[16,23],active_queu:41,restor:3,setup:[16,37],work:[20,33,34,17,50],default_transport:10,conceptu:27,undeliv:50,root:[16,50],overrid:[39,2,23,55],give:[2,50,49,38,8,25,55,56,57],indic:[14,18],unavail:23,want:[2,11,3,49,50,17,18,20,39,57],producerpool:[37,50],cutekitten:29,david:[47,28,50],end:[55,2,49,50],replicaset:50,interval_step:[38,56],how:[38,56],disappear:50,answer:33,place:50,get_consum:[49,23,35],connect_timeout:[20,56],updat:[34,19,50],subsecond:50,outsid:[16,23],initial_valu:27,after:[2,50,16,49,18,20,22,54,23,55,39,57],befor:[2,50,16,38,39,55,56,27,57],wrong:50,acquire_channel:50,demonstr:50,attempt:[55,2,49],classmethod:19,credenti:50,exclud:46,alias:[20,45,10,50],maintain:[27,57,17,50],environ:50,enter:[23,50],exclus:[55,54,25],fan:16,lambda:25,order:[2,49,19],origin:[2,31,16,3,49,54,23,55,34],method_id:18,over:[38,34,17],failur:[31,23,12,18,50],becaus:[50,25],fifo:[19,50],varg:6,uuid:[38,12,50],fit:[34,17],fix:[16,50],better:17,persist:[29,50,53,21,25,56,34],easier:20,them:[29,50,16,20,25,34],thei:[29,16,34,49,17,25,57],safe:[4,58],as_dict:50,promis:13,ipublish:12,bank:34,choic:17,queue_bind:[54,3,8,25],localis:18,timeout:[0,29,50,16,3,49,43,18,20,54,23,53,56,57,12,42],each:[3,51,17,38,25,56,27,34],debug:[14,50,35,52,21,44],side:18,mean:[2,31,50,3,49,34,18,20,54,25,55,27,57],discard_al:55,msgpack:[11,17],unbound:[0,16,25],goe:3,invaliddata:50,content:[14,11,49,50,17,18,39,55,34,2],method:[0,13,31,46,2,3,49,50,17,18,45,20,54,23,25,55,39,43,11,56],got:[57,23,35],situat:34,standard:[16,29,46,17,50],pika:[14,50,16,20,21,26,42],can_cache_declar:[22,25],traceback:56,prefetch:[55,3,49,2],add_consumer_from_dict:55,safe_str:4,attapattu:25,do_restor:[3,15],loginerror:42,wast:17,system:50,instruct:17,alreadi:[0,2,31,16,3,49,22,54,39,25,55,57],installed_app:50,primari:17,castaneda:50,restart_limit:23,top:[16,50],mcgee:50,sometim:34,necessarili:25,too:[16,57,23,50],listen:[43,50],namespac:43,channel2:49,channel1:49,keyword:[2,50,36,20,38,23,55,39,56,12],provid:[50,16,18,20,38,25,56,12],zero:[16,2,49,55,25],project:16,minut:[34,25],enable_callback:55,if_empti:[3,54,25],add_queu:55,raw:[3,11,17,36,25],binding_argu:25,increment:27,"__main__":[29,35],incompat:50,next_token:8,recreat:50,latter:[29,11],insur:12,kombu_log_channel:50,shall:50,bst:50,object:[29,11,15,32,16,3,50,17,22,23,24,25,56,57,19],what:[34,57,36,50],regular:16,brpop:50,letter:[34,50],bsd:[0,3,4,6,8,9,10,11,19,15,16,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,51,52,53,54,55,56,58],don:[16,57,17,50],flow:[55,3,49,54,2],doe:[2,50,16,49,10,25,55],declar:[2,50,16,3,49,20,22,39,25,55,53,57],wildcard:[46,25],dot:[16,46,25],"__str__":13,speedup:17,syntax:50,after_reply_message_receiv:[54,15],create_bind:8,identifi:[50,45,25],despit:12,acquir:[56,57,35,50],configur:[2,50,16,20,39,55,56,12],latenc:50,create_message_view:28,stop:[55,2,38,23,49],amazon:[16,8,50],popitem:19,report:[16,50],excel:29,patch:[16,50],channel_id:[54,50,18,42],bad:34,respond:[18,25],basic_ack:[54,3,8],mandatori:[2,50,54,39,25,55,42],result:[56,50],recursiveoperationdetect:42,respons:[56,50,25],fail:[18,50],channel_or_connect:16,best:[16,20,57,17],hopefulli:[38,12],default_region:8,databas:[20,40,50],wikipedia:[16,27,58],unack:3,awai:[34,57],attribut:[50,16,17,23,25,56,46],default_seri:11,pylibrabbitmq:[54,50],xrang:29,lamport:[27,50],supports_fanout:[50,16,6,41,20,8,46],howev:[17,50],against:57,logic:[27,50],com:[16,58],kwd:[38,23,19],sullivan:50,guid:[14,36],assum:25,three:11,been:[0,2,31,50,16,3,49,22,54,23,55,39,56,57],much:[38,34],force_close_al:50,interest:34,basic:[29,2,50,49,33,36,20,23,39],"__len__":53,life:34,fill_rat:58,lifo:[19,50],worker:[23,35],setup_log:[52,35,44],mher:50,ani:[2,50,16,49,17,18,23,25,55,56,46,57],"catch":38,ident:[16,52,25],servic:[2,3,49,21,55,34],properti:[2,31,50,16,3,18,38,54,39,25,55,42],seral:50,"typeof":3,aid:18,visibility_timeout:8,transport_opt:[20,56,8,50],conninfo:8,tabl:[14,50,16,3,6,20,8,10,25,46],kwarg:[1,3,4,6,8,12,13,15,44,18,22,23,24,25,46,28,30,31,32,35,41,37,38,40,42,43,47,50,51,53,54,55,56],consuming_from:[55,50],vendor:16,conn:[29,50,16,35,56,57,12],hong:50,datetim:29,perform:[2,50,16,49,23,25,55,12],suggest:16,make:[29,50,16,33,20,23,25],couchdb:[14,50,16,20,21,28],task_queu:[23,35],complet:[56,12],hang:50,hand:34,fairli:[3,17],rais:[2,31,11,16,3,49,50,35,38,54,23,25,55,56,57],refil:58,kept:[16,20],scenario:[34,36],cjson:[17,50],inherit:[3,50],client:[1,3,6,8,15,16,18,20,25,28,2,31,35,41,40,42,43,47,50,49,54,55],thi:[3,54,12,16,18,20,22,23,25,46,29,2,31,45,38,39,43,11,27,50,34,49,55,56,57,58],left:57,protocol:[16,46],just:[16,50,57,25],on_return:[55,2,39],human:34,yet:[20,50],languag:17,previous:[45,50],easi:16,djkombu:50,consumer_tag:[50,54,3,18,41,8,25,42],raw_messag:[3,18,42],had:[34,50],reiniti:50,east:8,opt:12,applic:[43,11,50,16,34,4,25,57],mayb:34,preserv:25,servererror:28,specif:[2,50,49,18,20,25,55,56,46],arbitrari:[55,2,39,50],manual:[2,50,16,49,39,25],unstabl:50,unnecessari:11,underli:[56,50],old:50,interv:[38,23,56,50],dead:50,intern:[38,18],metzlar:50,amqp_protocol_head:50,subclass:[55,3,49,2],buffer:[29,21,56,53,50],tracker:[16,14],condit:[18,50],foo:[20,50],localhost:[29,50,16,35,20,54,56,57],core:[40,50],idiomat:16,uncompress:45,stefan:50,ivan:50,lamportclock:[27,50],peer:[55,2,49,18],post:[34,25],"super":23,plug:16,obj:[4,56,32],slightli:29,beta:50,commit:50,produc:[29,14,36,2,16,34,50,17,35,20,21,54,39,37,55,53,56,57,12],"float":[17,50],encod:[29,14,2,16,4,50,17,18,45,21,39,25,55,11],bound:[43,50,16,22,25,46],down:[55,2,49,18],wrap:50,wai:[56,34,50],compatordereddict:19,support:[50,2,52,11,16,3,49,33,17,35,20,23,25,55,39,56,46,57,12],task_exchang:35,undeliverablewarn:50,"class":[1,2,3,6,44,8,10,19,13,14,15,17,18,12,20,21,22,23,24,25,27,28,29,30,31,32,35,41,37,38,39,40,42,43,47,46,50,48,49,51,52,53,54,55,56,58],avail:[2,11,16,34,49,50,45,20,25,55,56,57,58],war:34,fork:[57,50],forc:[37,11,56,18,50],recommend:[56,50,25],sqlalchemi:[14,1,50,16,48,21],safeguard:57,"true":[3,6,54,19,16,20,23,25,46,29,2,31,35,41,39,43,50,49,53,8,55,56,57,58],reset:[37,57,50],attr:[38,25],bugfix:50,maximum:[0,38,23,56,27,58],tell:20,emit:[4,50],featur:[16,14,50,39,2],"abstract":[3,22],proven:16,exist:[16,8,50,25],"0x1034fe090":24,read_timeout:18,ship:[57,50],check:[20,50,25],"0x1026f8500":25,verify_connect:18,content_encod:[2,31,11,3,17,18,54,39,25,55,42],when:[3,10,13,16,17,18,20,22,23,25,27,29,2,31,32,38,39,50,49,55,56,34,58],test:[16,50],pymongo:[6,50],shrink:57,node:[43,21],consid:[27,50],from_utf8:4,receiv:[29,2,31,16,49,36,18,20,54,25,55,53,27,34],faster:34,filterfunc:55,resourceconflict:28,interval_start:[38,56,50],ignor:[55,2,49,23,50],time:[29,34,50,3,38,23,56,27,57,58],reply_to:43,unicodedecodeerror:4,concept:16,snif:50,skip:[22,50],consum:[29,14,43,36,2,16,3,49,50,51,17,35,53,21,54,23,25,55,34,12,58],anand:50,depend:[0,50,16,20,25,56],aspn:58,show:50,dispatch_from_messag:43,domain_format:8,x06:41,sourc:16,"__exit__":50,string:[14,11,4,50,17,20,21,10,25,56],register_group:37,on_messag:49,forker:50,drain_ev:[43,31,50,16,3,49,18,54,56,42],word:[16,46,25],exact:46,level:[16,29,57,44],did:[33,50],messagestateerror:[0,3,31,54],exchangetyp:46,iter:[8,23],item:[11,56,8,19],tokenbucket:58,quick:16,slower:17,sign:34,cost:34,port:[31,50,16,3,20,54,56],on_task:23,establish_connect:[31,3,18,54,23,42],lazili:56,repli:[43,50,18,54,25,34],get_logg:44,current:[29,2,50,3,49,43,53,22,39,25,55,56,27,57],transport_alias:10,gener:[43,14,50,37,21,38,25,12],unauthor:28,equalitydict:38,address:[56,34],along:[55,2,39],wait:[2,16,49,18,25,55,56,34],queue_name_prefix:[8,50],queue:[3,6,8,12,15,16,20,21,23,24,25,46,29,2,31,35,36,40,41,42,50,48,49,53,54,55,56],prefetch_count:[2,3,49,54,55,42],throughput:34,maybe_declar:[2,50,35,22,39,55,57,12],extrem:50,bound_exchang:[16,25],rafael:50,orient:16,semant:[56,54,50],regardless:56,str_to_byt:4,extra:23,modul:[14,56,17,50],visibl:[48,24],instal:[16,14,50,11],regex:46,limitexceed:[0,56],memori:[14,15,50,16,3,20,21,25,34],eletzhof:50,todai:34,handler:[43,23,32],criteria:25,msg:[12,18],scope:[3,32],prev:46,create_produc:37,faircycl:[3,51],peopl:34,send_repli:12,ctype:50,simplebuff:[29,53,56,50],cached_properti:38,unseri:11,content_typ:[2,31,11,3,50,17,18,45,54,39,25,55,42],prepar:[37,3,38],uniqu:[38,50,12,25],descriptor:38,can:[3,54,12,16,17,18,20,22,23,25,27,29,2,31,38,39,11,50,34,49,55,56,57,58],pidbox:[43,14,21],encapsul:[54,18],stream:11,topic:[16,3,20,21,25,46,34],critic:[34,44],exchange_delet:[54,3,8],occur:[2,49,11,56,25],alwai:[16,20,56,50,25],multipl:[50,49,20,38,54,23,57],kombuerror:50,write:50,purg:[55,30,49,2,25],map:[43,2,3,39,10,55,46],product:50,max:38,clone:[56,50],known_host:50,mixin:[14,50,49,35,21,22,23],date:[29,21,50,17,36],drastic:50,data:[29,43,11,3,50,17,18,36,21,54,10],grow:57,gethostnam:29,practic:[16,20],stdin:56,predic:51,inform:25,"switch":50,combin:38,media_exchang:16,objectdoesnotexist:40,"_global":54,sqsdecodeerror:8,still:[55,2,49,34,50],amqpchannelexcept:18,entiti:[0,14,2,49,50,21,22,39,25,55,57,12],group:[37,57,36],polici:50,amqplib:[14,50,16,18,20,21,10],yaml:[11,17],window:[55,2,49],mail:[16,34],non:[16,3,50,25],connect_max_retri:23,synopsi:[16,14],myvhost:20,initi:[3,50],amqp_messag:42,restore_unacked_onc:3,now:[50,38,25,12,17],introduct:[43,14,16,36,21,34],term:[55,2,49],name:[29,2,43,11,16,48,49,50,45,20,38,8,24,10,25,55,53,56,12],drop:50,separ:[16,56,46,25],attributeerror:[18,50],courag:34,x16:41,errback:[56,38,12],domain:[16,8,25],replac:[55,4],individu:50,persistent_delivery_mod:25,contrib:50,autent:50,default_connection_param:[54,50,18,42],year:34,urlpars:50,happen:[29,2,31,50,16,39,55,34],max_retri:[38,56,50],correct:50,earlier:33,domest:57,million:34,orm:[16,50],mime:[11,45,50],process_task:35,org:[55,58,50],close_connect:[3,31,54,18,42],care:57,setdefault:19,synchron:[3,25,21,27,14],fromtimestamp:29,refus:50,recov:[2,50,3,49,55,34],turn:50,turk:50,log_messag:29,star:[16,25],frequent:[14,33],first:50,oper:[13,2,50,16,49,25,55,56],create_transport:56,directli:[3,50],onc:[3,57],"_pyrabbitmq":54,yourself:23,fast:17,"6dev":50,open:[50,16,17,20,38,56],size:[30,50,16,49,2,55],given:50,fmt:38,slept:56,silenc:50,basic_publish:[3,54,42],conveni:[57,50,23,12,11],routing_kei:[43,2,16,3,54,35,17,53,8,39,25,55,56,46,57,42],copi:[56,22,46,19],specifi:[29,2,31,11,3,49,50,17,20,39,10,25,55,56,12],broadcast:[43,46,34,12,50],github:16,handle_cast:43,than:[2,50,16,34,49,17,25,55,27,57],connectionpool:[56,57,50],were:[50,25],posit:38,conn2:57,conn1:57,no_ack:[2,50,54,3,49,53,8,25,55,56,42],transport:[1,3,6,8,10,14,15,16,18,20,21,24,26,46,28,30,31,36,41,40,42,47,50,48,51,54,56],seri:50,simpledb:[16,20,8,50],sai:38,argument:[29,2,43,50,3,49,36,20,38,54,23,25,55,39,56,46,57,12],deliv:[2,16,49,25,55,46,34],notbounderror:[0,16],notimplementederror:[55,3,49,2],channel_numb:42,destroi:50,note:[2,11,50,17,39,25,55,56,57],take:[2,38,23,49,25],channel:[0,1,3,6,8,12,15,16,17,18,20,21,22,23,25,46,28,29,2,31,35,41,39,40,42,43,47,50,49,52,53,54,55,56],sure:[33,23],multipli:50,unsuccess:3,price:34,compress:[29,14,2,16,50,35,45,53,21,22,39,55,57],greenthread:23,add_consum:55,pair:[56,19,25],entry_to_queu:[12,50],later:[20,34,50],amqpconnectionexcept:18,runtim:57,gracefulli:16,recipi:[55,2,49,34],type_to_nam:50,serializ:3,should_stop:23,onli:[29,11,50,16,3,20,25,27,34],explicitli:[20,25],transact:[3,34,50],activ:[2,3,49,25,55,56,57],state:[43,15,3,21,38,25,46],dict:[20,56],get:[29,14,16,3,51,45,6,53,38,8,10,25,56,46,57],kombu_log_debug:50,lifoqueu:[19,50],ssl:[20,56,50],cannot:18,jpeg:17,munz:50,requir:[29,2,50,39,55,23,46,34],item_nam:8,intermitt:12,scott:50,where:[50,51,38,23,25,57],wiki:58,parse_url:7,consumerset:[55,21,50],fanout:[43,50,16,3,20,21,25,46,34],if_unus:[3,54,25],infinit:55,can_consum:[3,58],detect:[2,50,17,18,39,55],enough:33,between:[2,50,3,38,39,25,55,56,27],"import":[29,50,16,34,49,35,20,23,25,57],across:16,connection_for_writ:30,cycl:[3,17],prepare_messag:[3,54,18,42],come:[29,34,50],prepare_bind:46,region:[8,50],mani:[56,34,17,50],improp:50,cancer:25,overview:[16,21,11],period:34,pop:[30,19],dispatch:[43,2,49,55,18],colon:56,cancel:[43,2,32,16,3,49,50,23,25,55],poll:[3,50,25],resynchron:27,mari:50,transient_delivery_mod:25,uncknowledg:3,former:29,"case":[11,50,57,17,25],exchange_typ:[55,3],hello_task:35,cast:43,parse_qsl:50,advantag:[17,25],henc:25,destin:[43,25],strain:50,myapp:50,abstractchannel:3,ascii:11,"__init__":[29,49,23,35],"0x1034feb90":24,develop:[16,50],author:[16,50],media:16,same:[29,50,16,49,17,20,25,56,57],binari:[11,50,17,25],refresh_connect:40,document:[16,14,56,20,55],week:34,finish:[55,2,49,25],nest:[38,49],decompress:45,improv:[55,2,49],basic_return:18,drain:[39,3,49,23,2],polling_interv:[47,50,3,6,41,8,40,28],reload_schedul:43,myq:50,without:[50,4,17,36,20,25],maybe_promis:13,model:[14,48,24,21],execut:32,"0x104220890":15,on_consume_end:23,protocolsyntaxerror:42,safety_interv:23,monei:34,aws_access_key_id:50,as_uri:[57,50],except:[0,1,3,4,6,8,14,16,17,18,21,23,24,28,2,11,35,38,39,40,42,47,50,49,51,54,56,57],blog:25,earli:57,around:17,read:[16,17,25],lolcat1:16,insist:[20,56],amq:[3,46,18],world:[35,50],postal:34,integ:[50,25],server:[2,31,50,16,3,49,18,20,54,25,55,56],from_dict:55,either:[16,38,34,25],manag:[50,30,14,3,5,21,38,23,24,57],cancel_by_queu:[55,2,49,50],eventloop:50,authent:50,queue_unbind:54,tube:57,achiev:34,video_queu:16,notabl:17,refer:[14,50,49,17,36,21,39],broker:[2,50,3,49,34,18,54,25,55,56,57,12,42],broken:50,maybe_bind:[22,25],aquir:50,"__name__":[29,35],comparison:[16,14,20,36],central:[11,34],cleanup_everi:30,ack:[29,31,50,16,3,49,35,54,23],activest:58,morin:50,surviv:34,your:[50,16,34,33,17,20,25,57],log:[29,14,50,44,18,21,23],aren:57,strict:34,interfac:[29,14,31,50,16,36,53,21,55,56,46],low:35,hard:34,register_callback:[16,2,49,55],connection_info:43,tupl:[11,31,46,38],shamelessli:25,longer:50,iterkei:19,reappli:56,possibl:[16,11,57,50],"default":[3,8,10,19,16,17,18,12,20,23,25,46,2,31,36,39,11,50,49,55,56,57],bucket:58,deadlock:57,connect:[0,1,3,8,12,14,15,16,18,20,21,22,23,25,28,29,2,31,35,36,37,38,39,40,42,43,47,50,49,52,54,55,56,57],creat:[29,37,50,43,20,22,8,25,56,57],multipleobjectsreturn:[24,40],certain:50,decreas:50,file:[16,56,17],girlfriend:34,again:[56,38,49],logger_nam:44,exitprior:32,event:[2,50,16,3,49,18,23,39,56,27],field:[20,25],subclient:41,cleanup:[30,50,32],collis:[38,12],you:[29,2,31,11,16,3,49,50,34,17,20,54,23,25,39,56,57,12],reply_text:18,registri:[21,50,45,11],kombu_polling_interv:50,pool:[37,14,50,35,36,20,21,56,57,12],unbind:25,directori:[16,50],chauvet:50,descript:25,potenti:[55,2,49,50],all:[2,50,16,3,49,34,17,18,20,8,25,55,46,57,19],forget:20,selinux:50,month:34,abil:[16,50],follow:[2,50,16,49,17,39,55,27],disk:[34,25],"__cmp__":13,init:43,program:[34,17,50],get_reply_queu:43,introduc:50,mpg:29,global:[2,15,50,49,55,57],solem:[0,3,4,8,9,10,19,15,18,12,22,23,25,27,2,31,32,45,41,37,38,42,43,11,46,50,51,52,53,54,55,56,58],fals:[37,2,15,11,3,49,50,38,19,20,22,54,23,25,55,39,56,28,12,42],util:[13,14,45,11,32,4,52,51,35,7,21,22,19,9,38,12,49,58],mechan:[55,2,49],fall:[55,2,49],veri:[34,38,57,12,35],ticket:43,client_0_8:18,on_connection_reviv:23,list:[2,11,16,49,50,17,45,20,23,55,39,56,12],queuemanag:[30,24],emul:3,entity_nam:8,adjust:27,default_port:[47,1,54,3,31,18,41,8,6,40,28,42],small:[38,12],still_act:32,sync:[16,27],rate:[14,58,21],design:25,pass:[43,2,11,50,17,20,38,39,55,56],unknownconsumertag:42,deleg:50,sub:[16,20,34],clock:[50,14,27,21],abl:[57,50],overload:13,delet:[2,50,16,3,49,18,54,38,8,25,55,56,12],version:[16,48,33,19,50],"public":37,hasn:[55,39],full:[16,10],hash:[16,25],behaviour:50,shouldn:34,modifi:25,hipri:35,valu:[13,50,3,18,20,38,25,27,57,19],search:14,sender:[27,34,18],serializat:50,soldier:34,action:[38,50,25],amqplain:50,via:[16,20,50],primit:[16,35,25],transit:20,deprec:[56,50],famili:34,suddenli:50,establish:[50,18,20,22,54,23,56,42],select:[54,3,31,8,50],distinct:50,method_sig:18,regist:[2,11,49,17,45,55],two:[29,2,50,16,34,49,38,25,55,57],coverag:57,taken:[20,58,32],"_queue_bind":46,basi:17,forcefulli:50,more:[0,3,4,6,8,9,10,11,19,15,16,17,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,50,49,51,52,53,54,55,56,58],prefetch_s:[2,3,49,54,55,42],get_loglevel:44,desir:17,flag:[2,3,49,53,22,25],broke:50,sens:25,known:50,cach:38,none:[3,8,10,19,44,18,12,23,25,46,29,2,31,32,41,37,38,39,42,43,11,50,49,52,53,54,55,56,34,58],midpri:35,aws_secret_access_kei:50,resolve_transport:10,histori:[14,50],remain:25,del:38,requeu:[2,31,3,49,33,54,55],delivery_tag:[54,3,31,8],def:[29,43,16,49,35,38,23,56],close_channel:[3,31],share:[20,46],dump_entri:29,accept:[55,2,49,23,50],cours:20,secur:16,rather:[2,50,3,49,55,57],anoth:[56,34],reject:[54,3,31,33],scienc:25,simpl:[29,14,2,49,50,35,36,53,21,55,27],unabl:23,resourc:[37,50,51,18,20,56,57],librabbitmq:[54,14,50,21],wait_multi:18,associ:[20,50,45,18,25],"short":18,django:[50,30,14,16,5,21,24,40],caus:[17,18,50],callback:[29,2,43,32,16,3,49,50,35,22,54,23,25,55,39,56,38,42],doesnotexist:24,queue_delet:[54,3,8,6],help:[16,14,19,50],queue_opt:[53,56],image_queu:16,held:[55,2,49],through:34,reconnect:[54,18],undeliver:[2,39],brokerconnect:[29,43,31,50,16,3,35,20,23,56,57],paramet:[2,11,3,49,50,45,18,20,38,39,25,55,56,46,57,12],itervalu:19,serializerregistri:11,reprcal:[38,35],exchang:[3,6,8,12,14,16,17,20,21,23,25,46,29,2,35,41,39,42,43,50,34,49,53,54,55,56,57],epol:50,wouldn:34,good:17,"return":[43,2,31,11,3,49,50,35,17,38,54,23,45,25,39,46,34,19,58],timestamp:[29,27,58],detect_environ:[9,50],framework:[16,14],cet:50,userid:[20,56,54,50],restore_unack:3,easili:[16,50],token:58,reactiv:[55,2,49],found:25,unicod:[11,17,50],memoryerror:50,send_as_task:35,monoton:27,realli:16,expect:[34,58],handle_messag:43,flavio:[6,50],safeti:58,channel_max:54,publish:[30,31,2,16,3,50,34,17,35,53,21,54,39,25,55,56,57],payload:[29,30,31,50,16,3,35,54,24,48],print:[29,16,34,49,35,38,23,56,57],qualifi:10,advanc:[16,2,49,55],pub:[16,20,34],beanstalkc:47,reason:16,base:[11,31,14,3,50,21,46],ask:[0,3,4,8,9,10,19,14,15,16,18,12,22,23,25,27,2,31,32,33,45,41,37,38,42,43,11,46,50,49,51,52,53,54,55,56,58],sent_at:[48,24],pyyaml:[11,50],add_queue_from_dict:50,thread:[57,56,58,23,50],delivery_info:[3,31,54],heartbeat:54,oserror:[54,18],simple_task_queu:50,number:[0,2,50,3,20,38,23,55,39,56,58],feet:57,when_bound:[22,25],done:[2,3,49,25,55,56],blank:25,stabl:50,miss:17,is_bound:22,differ:[29,50,49,35,20,23],guest:[29,50,16,35,20,54,57],least:25,statement:16,scheme:[16,17,25],store:[1,50,16,20,38,40,25,46],reject_log_error:[3,54],option:[43,2,11,16,49,50,17,20,23,25,55,39,56,12,53],auto_delet:[50,3,54,25,55,46],bytes_to_str:4,eventio:50,process_media:16,part:[20,3,50,17,25],pars:50,consult:[20,56,10],send_messag:50,whenev:50,remov:[29,31,50,3,54,25,19],serializernotinstal:11,str:[11,50],premoli:[6,50],packag:[16,11,55],imagin:34,built:[16,17,38,10,25,34],equival:[29,46],florian:50,self:[29,11,49,35,53,38,23,56],also:[2,50,16,49,17,20,23,25,55,56,27,34],build:16,maybechannelbound:22,pipelin:41,distribut:[16,27,50],previou:50,reach:38,priority_to_routing_kei:35,most:[16,56,58,25],news_exchang:[57,25],on_consume_readi:23,exc:[2,49,35,38,23,56],clear:[53,19],cover:25,clean:57,latest:[16,50],miron:50,multi_cal:43,keyprefix_queu:41,on_consumer_end:49,nasdaq:[16,25],session:[55,1,39],daisuk:50,fine:34,find:[55,2,49],clean_kombu_messag:[14,5,21],fxrang:38,copyright:[0,3,4,6,8,9,10,11,19,15,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,50,51,52,53,54,55,56,58],solut:16,couldn:56,queu:16,bernstein:50,unus:25,express:[17,50],resent:34,nativ:[16,20,17],mainten:50,fastest:34,get_queu:[43,8],restart:[34,25],bound_science_new:25,cyclic:50,stdchannelerror:[47,1,50,54,18,8,6,40,28,42],rfc:18,common:[14,50,16,35,21,25,57,12],set:[38,2,31,46,11,3,49,50,51,17,20,22,54,23,25,55,39,56,27,57],dump:38,sep:[38,41],get_limit:37,see:[0,3,4,6,8,9,10,11,19,13,15,16,18,12,20,22,23,25,27,28,2,31,32,33,45,41,37,38,39,42,43,47,46,50,34,49,51,52,53,54,55,56,57,58],arg:[13,30,32,54,3,4,35,18,44,37,22,8,19,24,40,55,23,38,41,12,42],close:[29,47,50,16,3,49,54,51,18,41,20,8,6,25,55,53,56,57,42],someth:[29,50],particip:16,won:25,mutex:27,logwrap:52,httperror:28,altern:[2,49,17,20,25,55,56],signatur:[55,2,49,39,50],mailbox:[43,21],lowercas:50,infam:4,distinguish:50,both:[16,29,50,12,25],consumermixin:[49,23,35,50],last:[56,50,58,19,25],delimit:25,boto:8,tokensin:58,context:[29,43,50,18,20,38,23],whole:[55,2,49],load:20,simpli:16,point:3,instanti:[2,50,49,39,55,56],schedul:[3,51,21,14],header:[2,31,50,3,17,18,53,54,39,25,55,46,42],provok:18,shutdown:3,linux:50,backend:[55,46,15,50],becom:50,stamp:27,due:[31,18],empti:[50,25],yadda:57,modern:17,ensure_byt:4,imag:[16,17],great:34,coordin:34,demand:50,stolen:[58,25],"while":[29,43,2,16,49,50,38,23],duran:50,behavior:50,error:[29,47,31,50,16,3,4,35,6,44,54,8,23,18,25,56,28,42],fun:[13,43,51,35,38,23,56,12],loop:56,ordereddict:50,readi:[2,3,49,23,25,55],no_ack_consum:54,itself:[55,2,49,50],weakref:32,shorter:50,decod:[2,31,11,3,49,50,17,45,21,54,23,55],resourcenotfound:28,"__repr__":13,optim:34,syn:[14,50,9,21],user:[29,14,50,16,36,20,56],chang:[3,50,57,14],recent:[56,33,50],lower:50,task:[16,50,23,35,36],older:[19,50],entri:[29,58,50],pickl:[16,11,50,35,17],rajith:25,cest:50,shortcut:[29,56,50],sslerror:50,is_enabled_for:44,default_encod:4,dataerror:50,pyamqplib:20,auto_declar:[55,2,49,39,50],format:[20,8,50],bit:17,characterist:17,resolv:18,collect:3,api:[3,50,21,14],popular:16,deadletter_queu:50,often:57,acknowledg:[0,2,31,50,3,49,53,54,23,25,56],some:[16,27,34,17,50],back:[34,31,3,18,54,57],per:[57,17,50],prop:[54,12],retri:[2,50,38,39,55,23,56,12],slash:50,undoc:5,kumria:50,run:[4,23,35,49,50],step:[38,23],pika2:42,binding_kei:54,constraint:17,class_id:18,delivery_mod:[55,2,50,39,25],block:[29,50,35,53,56,57],"__future__":[29,35],within:[55,2,49],ensur:[2,50,16,3,22,39,55,56,12],durabl:[16,3,54,25,55,56,46],errno:50,question:[14,33],"long":[38,50,34,25],custom:[50,16,36,17,25,57,12],no_loc:54,includ:[27,17,10,50],collect_repli:12,forward:[50,27,23,25],etc:[16,17],properli:[50,25],channellimitexceed:[0,56],translat:50,sdb:[8,50],line:56,connectionerror:54,info:[29,43,50,35,44,54,56],utf:11,connectionclos:42,consist:[16,25],caller:56,minhe:50,doesn:[33,8],repres:11,cure:25,home:34,amqp:[29,2,11,16,34,54,50,35,18,20,22,8,39,25,55,57,42],titl:57,my_pictur:17,codec:50,kombu:[0,1,2,3,4,6,7,8,9,10,11,19,13,14,15,16,17,18,12,20,21,22,23,24,25,26,27,28,29,30,31,32,35,45,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58],deseri:[29,11,31,3,17,54],mongodb:[14,50,16,6,20,21],get_transport_cl:[56,10],drag:57,ago:34,algorithm:[16,58,25],far:34,hello:[35,50],pluggabl:16,code:[58,57,18,50],queri:[20,8],brokerst:[3,15],legal:8,channelclos:42,simplequeu:[29,53,56,50],base64:[17,50],send:[29,2,43,11,16,34,49,50,17,18,36,20,25,55,27,57],body_encod:50,aris:29,movsisyan:50,passiv:[54,3,50,25],reprkwarg:38,account:50,cellular:57,recip:58,abcast:43,iterconsum:55,ack_log_error:[3,54],"try":[0,2,43,50,49,35,38,23],race:50,maxsiz:19,"__copy__":50,pleas:[16,50],impli:25,smaller:[55,2,49,17],skvazh:50,video:[16,29],download:16,append:3,compat:[14,50,16,17,21,55,19],index:[16,14],routes_for:8,access:[13,3,50,25],kombu_log_connect:50,experiment:50,beanstalkcexcept:47,fujiwara:50,timeouterror:0,iteritem:19,len:53,bodi:[43,2,31,11,16,3,49,50,35,18,45,54,23,25,55,39,42],let:[57,50],ioerror:[47,54,18],ensure_connect:[56,50],sinc:17,convert:[3,18,50],convers:46,larger:17,implement:[50,16,3,33,20,23,56,46,58],fxrangemax:38,chanc:[38,51,12],"0x10264acf0":19,appli:[2,50,49,23,55,56],app:57,beanstalk:[14,47,16,50,20,21],"boolean":17,redi:[14,50,16,41,20,21,46,57],usd:[16,25],from:[3,4,8,19,16,18,20,25,27,29,2,31,32,35,50,34,49,51,53,54,55,56,57,58],login_method:[56,50],commun:34,upgrad:50,next:[38,50],"transient":[29,50,54,25,56,34],message_to_python:[3,50,18,42],rabbit:16,shortstr:18,annoy:16,unacknowledg:[55,3,49,2],retriev:8,alia:[0,50,45,10,25],annot:44,annoi:50,tag:[3,50,25],fetch:[55,30],control:[55,2,49,50],process:[29,2,31,50,16,3,49,17,54,55,43,27,57],high:[16,34,35],carrot:[16,55,50],tarbal:16,connectionfailur:6,serial:[29,14,36,2,16,50,35,17,53,21,39,25,55,11,57],uuid4:[38,12],handle_cal:43,brian:50,memoiz:13,instead:[20,3,29,50],stock:[16,34,25],on_connection_error:23,reply_exchang:43,consistent_read:8,loglevel:[52,35,44],seriou:50,counter:[27,18,50],correspond:[3,46,50],issu:[16,57,18,50],allow:[16,50],ingress:57,move:[27,50],qsize:53,warren:16,clymer:28,willing:50,anyon:34,therefor:25,eur:[16,25],crash:[4,50],greater:27,python:[29,14,31,11,16,3,50,17,18,54,55,19,58],auto:[2,17,39,25,55,56,12],dan:50,dai:34,auth:50,"0x103d33d50":3,terminolog:[16,14],unregist:[11,50],interval_max:[38,56],multiprocess:32,anyth:[57,50],msg_peek:50,queues2:49,queues1:49,mode:[50,34,25],on_iter:23,poolgroup:37,redeliv:[55,2,49],globe:34,channelpool:[56,50],our:[16,50,57,18,25],special:[16,11,57,25],out:[16,3,50,58,32],variabl:50,twice:22,req:12,ret:50,suitabl:11,sever:[16,20,49,34,44],shut:18,insid:17,"_kombu":41,bound_sicence_new:25,kilobyt:50,undo:[55,2,49],dictionari:[11,17,19],releas:[37,50,36,20,21,55,56,57],reset_aft:37,guarante:3,unwant:50,could:[34,50],put:[29,3,31,54,53],keep:50,connectionlimitexceed:[0,56,57],channel_error:[47,1,50,54,31,18,8,23,6,40,56,28,42],issue10272:50,reply_cod:18,cristian:50,softwar:[16,27],christoph:50,exchange_declar:[3,54],qualiti:[55,3,49,2,21],oldpika:50,basic_get:[54,3,50,42],ziegler:[47,50],mai:[2,34,49,17,18,20,25,55,56,57,58],retry_over_tim:38,prioriti:[2,3,35,18,54,39,25,55,42],token_bucket:58,start:[50,16,38,25,56,57],unknown:50,licens:[0,3,4,6,8,9,10,11,19,14,15,16,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,51,52,53,54,55,56,58],expected_tim:58,capac:58,messag:[0,1,3,8,12,14,16,17,18,20,21,23,24,25,27,29,2,31,33,34,36,35,39,40,42,43,11,46,50,48,49,53,54,55,56,57],stephan:50,monkei:50,pavel:50,"final":[43,14,50,21,32],get_nowait:53,"__del__":50,shallow:19,message_data:[3,18],basic_cancel:[50,3,8,18,41,54],structur:[3,31,54,17,11],charact:[16,11,46,50,25],itermessag:12,bind:[2,16,3,49,6,41,22,8,25,55,46],steev:50,"function":[13,14,50,57,45,21,38,23,10,25,56,28,12],kwdict:[38,35],terribl:50,py2:50,have:[29,2,50,16,34,49,17,20,38,23,25,55,39,56,57,12],disadvantag:17,need:[29,2,50,16,34,49,17,20,23,55,39,56,46,57],rout:[29,2,50,16,3,20,8,39,25,55,56,46],mid:35,mix:49,get_tabl:[46,3,8,6,41],which:[29,2,50,34,49,17,18,20,23,25,55,57,19],zlib:57,singl:[29,2,50,49,38,25,56,46,34],unless:11,who:35,deploi:34,rkei:[46,17],why:34,marshal:11,url:[14,50,36,7,20,21,56],request:[2,11,49,18,55,56,34],determin:25,fact:57,text:[16,4,44,18,45],sent:[2,31,50,16,3,49,17,54,25,55,34],raw_encod:11,anywai:34,setter:38,locat:50,forev:[38,57,56,50],should:[11,50,16,49,2,23,55,57,58],extra_context:23,local:[55,2,49,25],contribut:[16,14,50],beat:43,familiar:16,pypi:[16,55,50],maybe_conn_error:23,increas:[38,50],enabl:[2,50,16,3,49,53,54,39,55,56],directexchang:[3,46],contain:[50,3,11,25],get_decod:45,frame_max:54,allowed_method:18,basic_reject:[3,54],nitzan:50,lyon:50,correctli:[18,50],pattern:[16,8,34,25],written:34,nofreechannel:42,email:34,nowait:[54,3,42,25],kei:[29,2,50,16,3,39,25,55,56,46,19],addit:[29,2,50,20,38,23,25,55,39,56,12,53],mongod:50,equal:[55,2,49,51,19],april:[21,36],instanc:[38,2,31,50,3,49,17,52,22,23,25,55,56,57,12],default_channel:[49,50],iterqueu:55,repeatlast:38,on_special_messag:49,solv:50,on_decode_error:[55,2,49,23,50],respect:[57,50],compon:50,operationfailur:6,json:[29,2,11,16,50,17,39,57],autoretri:50,treat:25,queue_declar:[54,3,50,25],immedi:[2,54,39,25,55,56,42],ghettoq:50,lopri:35,decim:17,queue_nam:[29,30],bye:35,process_next:55,plain:17,harder:20,defin:[29,16,3,18,22,23,25,46,34,12],create_channel:[3,31,54,18,42],eintr:50,layer:16,avi:16,apply_glob:[55,3,49,2],incom:27,reviv:[2,50,49,22,39,55],welcom:16,parti:34,cross:17,member:5,handl:[43,2,50,16,49,18],"0x10269b250":11,http:[16,55,58,28,50],hostnam:[20,29,56,43,50],max_item:8,logfil:44,fromkei:19,keyboardinterrupt:35,thought:27,exampl:[29,14,43,11,16,34,50,35,36,20,38,23,25,56,46,57],command:[43,12,50],choos:20,queue_purg:[3,54,42],usual:[43,3,56,50,11],"0x101805650":57,detail:[0,3,4,6,8,9,10,11,19,15,16,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,51,52,53,54,55,56,58],a_glob:42,percoco:[6,50],simultan:0,add:[16,50],valid:20,is_al:18,bool:25,logger:[29,50,3,44,52,54],match:[16,46,50,18,25],gmt:50,jython:50,include_password:50,know:57,password:[20,56,54,50],recurs:17,get_item:8,insert:19,like:[29,16,57,17,25,34],lost:[2,50,39,25,55,23],basic_recov:3,necessari:[34,50],if_unusu:3,lose:34,async:[43,14,50,16,21,9],page:14,exceed:[0,38,56,50],didn:[34,50],select_for_upd:30,gevent:[23,50],with_stat:[29,35],syncdb:50,log_queu:29,librari:[29,50,17,25],tmp:16,lead:50,leak:50,avoid:[55,2,49,50],octet:[55,2,49],leav:[50,25],postencod:31,preload:56,encourag:[16,20],slight:17,usag:[56,27,50],vhost:8,host:[20,56,54,50],my_callback:16,although:[55,2,49,25],basic_qo:[3,54,42],about:[16,57,25],actual:34,socket:[29,47,50,54,18,8,56,28,42],constructor:[43,3,56],discard:[3,31,54,56,18],anyjson:50,disabl:[2,50,16,3,49,20,39,55,53,56,57],topicexchang:[3,46],own:[31,50,20,25,27,57],easy_instal:16,automat:[2,50,16,49,39,25,55,56],ionel:50,list_bind:54,transfer:[34,17],myqueu:29,safe_repr:4,adher:3,deliveri:[50,34,25],simplejson:17,subscrib:[55,2,49,34],keyerror:50,gain:17,sphinx:16,overflow:[55,2,49],bug:[16,14,50],count:3,dispatch_method:18,whether:[20,22,25],record:34,limit:[0,14,43,2,3,49,50,17,37,21,23,55,56,57,12,58],indefinit:50,virtual_host:[20,56,54,50],basic_consum:[54,3,18,41,8,40,42],otherwis:[55,2,49,25],problem:[16,50],socketerror:47,evalu:13,"int":50,dure:[55,39],filenam:29,on_rev:[56,12,50],replica:50,contextlib:29,pip:16,probabl:17,bzip2:35,brokertransport:50,virtual:[14,15,50,16,3,51,20,21,56,46],other:[2,49,17,18,20,55,27,34,19],lookup:[46,50],get_encod:45,rememb:[16,56,19],mpromis:13,fulli:[10,50],stai:[16,50],messagemanag:[30,24],experienc:50,open_fil:38,reliabl:[16,34,36],rule:[27,18],view_creat:28,cookbook:58},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","kombu.transport.sqlalchemy","kombu.messaging","kombu.transport.virtual","String Encoding - kombu.utils.encoding","Django Management - clean_kombu_messages","kombu.transport.mongodb","kombu.utils.url","kombu.transport.SQS","Async Utilities - kombu.syn","kombu.transport","kombu.serialization","Common Utilities - kombu.common","kombu.utils.functional","Kombu Documentation","kombu.transport.memory","kombu - Messaging Framework for Python","Serialization","kombu.transport.amqplib","Compat. utilities - kombu.utils.compat","Connections and transports","API Reference","kombu.compression","Mixin Classes - kombu.mixins","Django Models - kombu.transport.django.models","kombu.entity","kombu.transport.pika","Clocks and Synchronization - kombu.clocks","kombu.transport.couchdb","Simple Interface","Django Managers - kombu.transport.django.managers","kombu.transport.base","Finalize - kombu.utils.finalize","Frequently Asked Questions","Introduction","Examples","User Guide","General Pools - kombu.pools","Utilities - kombu.utils","Producers","kombu.transport.django","kombu.transport.redis","kombu.transport.pika","kombu.pidbox","Logging - kombu.log","kombu.compression","kombu.transport.virtual.exchange","kombu.transport.beanstalk","Models","Consumers","Change history","kombu.transport.virtual.scheduling","Debugging - kombu.utils.debug","kombu.simple","kombu.transport.librabbitmq","kombu.compat","kombu.connection","Connection and Producer Pools","Rate limiting - kombu.utils.limits"],objnames:{"0":["py","module","Python module"],"1":["py","method","Python method"],"2":["py","attribute","Python attribute"],"3":["py","data","Python data"],"4":["py","function","Python function"],"5":["py","class","Python class"],"6":["py","exception","Python exception"],"7":["py","classmethod","Python class method"]},filenames:["reference/kombu.exceptions","reference/kombu.transport.sqlalchemy","reference/kombu.messaging","reference/kombu.transport.virtual","reference/kombu.utils.encoding","reference/kombu.transport.django.management.commands.clean_kombu_messages","reference/kombu.transport.mongodb","reference/kombu.utils.url","reference/kombu.transport.SQS","reference/kombu.syn","reference/kombu.transport","reference/kombu.serialization","reference/kombu.common","reference/kombu.utils.functional","index","reference/kombu.transport.memory","introduction","userguide/serialization","reference/kombu.transport.amqplib","reference/kombu.utils.compat","userguide/connections","reference/index","reference/kombu.abstract","reference/kombu.mixins","reference/kombu.transport.django.models","reference/kombu.entity","reference/kombu.transport.pika","reference/kombu.clocks","reference/kombu.transport.couchdb","userguide/simple","reference/kombu.transport.django.managers","reference/kombu.transport.base","reference/kombu.utils.finalize","faq","userguide/introduction","userguide/examples","userguide/index","reference/kombu.pools","reference/kombu.utils","userguide/producers","reference/kombu.transport.django","reference/kombu.transport.redis","reference/kombu.transport.pika2","reference/kombu.pidbox","reference/kombu.log","reference/kombu.compression","reference/kombu.transport.virtual.exchange","reference/kombu.transport.beanstalk","reference/kombu.transport.sqlalchemy.models","userguide/consumers","changelog","reference/kombu.transport.virtual.scheduling","reference/kombu.utils.debug","reference/kombu.simple","reference/kombu.transport.librabbitmq","reference/kombu.compat","reference/kombu.connection","userguide/pools","reference/kombu.utils.limits"]}) \ No newline at end of file
+Search.setIndex({objects:{"kombu.transport.virtual.scheduling.FairCycle":{close:[51,1,1,""],get:[51,1,1,""]},"kombu.transport.django.models":{Queue:[24,5,1,""],Message:[24,5,1,""]},"kombu.connection.ChannelPool":{release:[56,1,1,""],acquire:[56,1,1,""],LimitExceeded:[56,2,1,""]},"kombu.transport.amqplib.Connection":{dispatch_method:[18,1,1,""],drain_events:[18,1,1,""],read_timeout:[18,1,1,""],close:[18,1,1,""],channel:[18,1,1,""],wait:[18,1,1,""]},"kombu.transport.SQS.Channel":{queue_name_prefix:[8,2,1,""],conninfo:[8,2,1,""],exchange_delete:[8,1,1,""],basic_ack:[8,1,1,""],close:[8,1,1,""],transport_options:[8,2,1,""],default_region:[8,2,1,""],supports_fanout:[8,2,1,""],region:[8,2,1,""],sqs:[8,2,1,""],entity_name:[8,1,1,""],basic_cancel:[8,1,1,""],basic_consume:[8,1,1,""],sdb:[8,2,1,""],table:[8,2,1,""],get_table:[8,1,1,""],Table:[8,5,1,""],get_exchanges:[8,1,1,""],visibility_timeout:[8,2,1,""],domain_format:[8,2,1,""]},"kombu.transport.librabbitmq.Transport.Connection.Channel":{Message:[54,5,1,""],prepare_message:[54,1,1,""]},"kombu.transport.SQS.Transport.Channel":{transport_options:[8,2,1,""],conninfo:[8,2,1,""],Table:[8,5,1,""],exchange_delete:[8,1,1,""],basic_ack:[8,1,1,""],entity_name:[8,1,1,""],queue_name_prefix:[8,2,1,""],sqs:[8,2,1,""],supports_fanout:[8,2,1,""],region:[8,2,1,""],default_region:[8,2,1,""],basic_cancel:[8,1,1,""],basic_consume:[8,1,1,""],sdb:[8,2,1,""],close:[8,1,1,""],get_table:[8,1,1,""],table:[8,2,1,""],get_exchanges:[8,1,1,""],visibility_timeout:[8,2,1,""],domain_format:[8,2,1,""]},"kombu.transport":{sqlalchemy:[1,0,1,""],amqplib:[18,0,1,""],SQS:[8,0,1,""],mongodb:[6,0,1,""],couchdb:[28,0,1,""],redis:[41,0,1,""],virtual:[3,0,1,""],django:[40,0,1,""],DEFAULT_TRANSPORT:[10,3,1,""],librabbitmq:[54,0,1,""],beanstalk:[47,0,1,""],base:[31,0,1,""],pika2:[42,0,1,""],get_transport_cls:[10,4,1,""],memory:[15,0,1,""],TRANSPORT_ALIASES:[10,3,1,""],resolve_transport:[10,4,1,""]},"kombu.log.LogMixin":{info:[44,1,1,""],warn:[44,1,1,""],get_loglevel:[44,1,1,""],log:[44,1,1,""],annotate:[44,1,1,""],get_logger:[44,1,1,""],critical:[44,1,1,""],logger_name:[44,2,1,""],error:[44,1,1,""],debug:[44,1,1,""],logger:[44,2,1,""],is_enabled_for:[44,1,1,""]},"kombu.transport.redis.Channel":{pipeline:[41,1,1,""],unacked_index_key:[41,2,1,""],unacked_key:[41,2,1,""],keyprefix_queue:[41,2,1,""],sep:[41,2,1,""],supports_fanout:[41,2,1,""],subclient:[41,2,1,""],from_transport_options:[41,2,1,""],priority:[41,1,1,""],active_queues:[41,2,1,""],priority_steps:[41,2,1,""],client:[41,2,1,""],basic_consume:[41,1,1,""],close:[41,1,1,""],get_table:[41,1,1,""],QoS:[41,5,1,""],basic_cancel:[41,1,1,""],visibility_timeout:[41,2,1,""]},"kombu.transport.virtual.Channel":{do_restore:[3,2,1,""],qos:[3,2,1,""],basic_ack:[3,1,1,""],basic_reject:[3,1,1,""],basic_get:[3,1,1,""],close:[3,1,1,""],basic_recover:[3,1,1,""],exchange_declare:[3,1,1,""],exchange_delete:[3,1,1,""],queue_bind:[3,1,1,""],drain_events:[3,1,1,""],state:[3,2,1,""],basic_publish:[3,1,1,""],basic_consume:[3,1,1,""],queue_delete:[3,1,1,""],queue_declare:[3,1,1,""],queue_purge:[3,1,1,""],basic_qos:[3,1,1,""],basic_cancel:[3,1,1,""],message_to_python:[3,1,1,""],get_table:[3,1,1,""],exchange_types:[3,2,1,""],flow:[3,1,1,""],"typeof":[3,1,1,""],Message:[3,2,1,""],prepare_message:[3,1,1,""]},"kombu.transport.pika2.Connection":{close:[42,1,1,""],drain_events:[42,1,1,""],channel:[42,1,1,""],Channel:[42,5,1,""]},"kombu.transport.virtual.scheduling":{FairCycle:[51,5,1,""]},"kombu.pidbox.Mailbox":{Node:[43,1,1,""],abcast:[43,1,1,""],get_reply_queue:[43,1,1,""],exchange:[43,2,1,""],multi_call:[43,1,1,""],namespace:[43,2,1,""],cast:[43,1,1,""],connection:[43,2,1,""],call:[43,1,1,""],get_queue:[43,1,1,""],reply_exchange:[43,2,1,""],type:[43,2,1,""]},"kombu.simple.SimpleQueue":{queue_opts:[53,2,1,""],qsize:[53,1,1,""],producer:[53,2,1,""],get:[53,1,1,""],clear:[53,1,1,""],get_nowait:[53,1,1,""],queue:[53,2,1,""],exchange_opts:[53,2,1,""],channel:[53,2,1,""],put:[53,1,1,""],close:[53,1,1,""],consumer:[53,2,1,""],no_ack:[53,2,1,""],"__len__":[53,1,1,""]},"kombu.transport.django.Channel":{basic_consume:[40,1,1,""],refresh_connection:[40,1,1,""]},"kombu.transport.pika2.Transport":{channel_errors:[42,2,1,""],drain_events:[42,1,1,""],establish_connection:[42,1,1,""],default_connection_params:[42,2,1,""],Connection:[42,5,1,""],connection_errors:[42,2,1,""],create_channel:[42,1,1,""],default_port:[42,2,1,""],Message:[42,5,1,""],close_connection:[42,1,1,""]},"kombu.transport.redis.Transport.Channel":{pipeline:[41,1,1,""],unacked_index_key:[41,2,1,""],QoS:[41,5,1,""],keyprefix_queue:[41,2,1,""],sep:[41,2,1,""],supports_fanout:[41,2,1,""],subclient:[41,2,1,""],from_transport_options:[41,2,1,""],priority:[41,1,1,""],get_table:[41,1,1,""],priority_steps:[41,2,1,""],client:[41,2,1,""],basic_consume:[41,1,1,""],active_queues:[41,2,1,""],close:[41,1,1,""],basic_cancel:[41,1,1,""],visibility_timeout:[41,2,1,""],unacked_key:[41,2,1,""]},"kombu.transport.librabbitmq.Connection":{fileno:[54,1,1,""],reconnect:[54,1,1,""],frame_max:[54,2,1,""],drain_events:[54,1,1,""],hostname:[54,2,1,""],userid:[54,2,1,""],Channel:[54,5,1,""],callbacks:[54,2,1,""],connected:[54,2,1,""],connect:[54,1,1,""],virtual_host:[54,2,1,""],heartbeat:[54,2,1,""],close:[54,1,1,""],Message:[54,5,1,""],password:[54,2,1,""],port:[54,2,1,""],channel:[54,1,1,""],channel_max:[54,2,1,""]},"kombu.transport.amqplib.Transport.Connection":{read_timeout:[18,1,1,""],drain_events:[18,1,1,""],channel:[18,1,1,""]},"kombu.transport.sqlalchemy.Channel":{session:[1,2,1,""]},"kombu.transport.virtual.Message.MessageStateError":{message:[3,2,1,""],args:[3,2,1,""]},"kombu.transport.mongodb.Transport":{channel_errors:[6,2,1,""],polling_interval:[6,2,1,""],connection_errors:[6,2,1,""],Channel:[6,5,1,""],default_port:[6,2,1,""]},"kombu.transport.SQS.Transport":{connection_errors:[8,2,1,""],default_port:[8,2,1,""],polling_interval:[8,2,1,""],Channel:[8,5,1,""],channel_errors:[8,2,1,""]},"kombu.transport.pika2.Transport.Connection.Channel":{basic_qos:[42,1,1,""],basic_get:[42,1,1,""],channel_id:[42,2,1,""],basic_publish:[42,1,1,""],basic_consume:[42,1,1,""],message_to_python:[42,1,1,""],close:[42,1,1,""],Message:[42,5,1,""],prepare_message:[42,1,1,""],queue_purge:[42,1,1,""]},"kombu.transport.pika2.Channel":{basic_qos:[42,1,1,""],basic_get:[42,1,1,""],channel_id:[42,2,1,""],basic_publish:[42,1,1,""],basic_consume:[42,1,1,""],message_to_python:[42,1,1,""],queue_purge:[42,1,1,""],close:[42,1,1,""],Message:[42,5,1,""],prepare_message:[42,1,1,""]},"kombu.transport.librabbitmq.Connection.Message.MessageStateError":{message:[54,2,1,""],args:[54,2,1,""]},"kombu.transport.redis.Transport":{polling_interval:[41,2,1,""],handle_event:[41,1,1,""],on_poll_init:[41,1,1,""],default_port:[41,2,1,""],on_poll_start:[41,1,1,""],Channel:[41,5,1,""]},"kombu.transport.virtual.exchange.ExchangeType":{type:[46,2,1,""],equivalent:[46,1,1,""],lookup:[46,1,1,""],prepare_bind:[46,1,1,""]},"kombu.transport.couchdb.Channel":{client:[28,2,1,""],view_created:[28,2,1,""]},"kombu.transport.SQS.Channel.Table":{routes_for:[8,1,1,""],queue_bind:[8,1,1,""],create_binding:[8,1,1,""],select:[8,1,1,""],queue_delete:[8,1,1,""],exchange_delete:[8,1,1,""],get_exchanges:[8,1,1,""],get_item:[8,1,1,""],get_queue:[8,1,1,""]},"kombu.transport.base.Message":{body:[31,2,1,""],ack:[31,1,1,""],delivery_info:[31,2,1,""],acknowledged:[31,2,1,""],properties:[31,2,1,""],decode:[31,1,1,""],headers:[31,2,1,""],content_encoding:[31,2,1,""],content_type:[31,2,1,""],reject:[31,1,1,""],delivery_tag:[31,2,1,""],requeue:[31,1,1,""],payload:[31,2,1,""],channel:[31,2,1,""]},"kombu.utils.functional.promise":{evaluate:[13,1,1,""]},"kombu.compat.Publisher":{compression:[55,2,1,""],exchange:[55,2,1,""],serializer:[55,2,1,""],auto_delete:[55,2,1,""],send:[55,1,1,""],auto_declare:[55,2,1,""],routing_key:[55,2,1,""],publish:[55,1,1,""],revive:[55,1,1,""],connection:[55,2,1,""],declare:[55,1,1,""],channel:[55,2,1,""],release:[55,1,1,""],close:[55,1,1,""],exchange_type:[55,2,1,""],on_return:[55,2,1,""],durable:[55,2,1,""],maybe_declare:[55,1,1,""],backend:[55,2,1,""]},"kombu.connection.ConnectionPool":{release:[56,1,1,""],acquire:[56,1,1,""],LimitExceeded:[56,2,1,""]},"kombu.transport.amqplib":{Message:[18,5,1,""],Connection:[18,5,1,""],Transport:[18,5,1,""],Channel:[18,5,1,""]},"kombu.connection.BrokerConnection":{SimpleBuffer:[56,1,1,""],info:[56,1,1,""],create_transport:[56,1,1,""],SimpleQueue:[56,1,1,""],channel_errors:[56,2,1,""],drain_events:[56,1,1,""],transport:[56,2,1,""],host:[56,2,1,""],ensure_connection:[56,1,1,""],connection:[56,2,1,""],connection_errors:[56,2,1,""],ensure:[56,1,1,""],Pool:[56,1,1,""],get_transport_cls:[56,1,1,""],ChannelPool:[56,1,1,""],release:[56,1,1,""],clone:[56,1,1,""],channel:[56,1,1,""],connect:[56,1,1,""]},"kombu.entity":{Queue:[25,5,1,""],Exchange:[25,5,1,""]},"kombu.transport.SQS":{Channel:[8,5,1,""],Transport:[8,5,1,""]},"kombu.pools":{reset:[37,4,1,""],PoolGroup:[37,5,1,""],ProducerPool:[37,5,1,""],register_group:[37,4,1,""],get_limit:[37,4,1,""],set_limit:[37,4,1,""]},"kombu.transport.sqlalchemy":{models:[48,0,1,""],Transport:[1,5,1,""],Channel:[1,5,1,""]},"kombu.utils.finalize.Finalize":{cancel:[32,1,1,""],still_active:[32,1,1,""]},"kombu.transport.librabbitmq.Connection.Channel.Message.MessageStateError":{message:[54,2,1,""],args:[54,2,1,""]},"kombu.transport.pika2.Transport.Connection":{close:[42,1,1,""],drain_events:[42,1,1,""],Channel:[42,5,1,""],channel:[42,1,1,""]},"kombu.serialization":{register:[11,4,1,""],decode:[11,4,1,""],SerializerNotInstalled:[11,6,1,""],encode:[11,4,1,""],raw_encode:[11,4,1,""],registry:[11,3,1,""]},"kombu.transport.redis.Channel.QoS":{unacked_index_key:[41,2,1,""],unacked_key:[41,2,1,""],restore_visible:[41,1,1,""],ack:[41,1,1,""],restore_unacked:[41,1,1,""],restore_by_tag:[41,1,1,""],client:[41,2,1,""],visibility_timeout:[41,2,1,""],reject:[41,1,1,""],restore_at_shutdown:[41,2,1,""],append:[41,1,1,""]},"kombu.transport.amqplib.Transport":{eventmap:[18,1,1,""],get_manager:[18,1,1,""],on_poll_init:[18,1,1,""],channel_errors:[18,2,1,""],drain_events:[18,1,1,""],verify_connection:[18,1,1,""],establish_connection:[18,1,1,""],nb_keep_draining:[18,2,1,""],default_connection_params:[18,2,1,""],Connection:[18,5,1,""],connection_errors:[18,2,1,""],create_channel:[18,1,1,""],default_port:[18,2,1,""],is_alive:[18,1,1,""],on_poll_start:[18,1,1,""],close_connection:[18,1,1,""]},"kombu.transport.librabbitmq.Connection.Message":{body:[54,2,1,""],reject_log_error:[54,1,1,""],ack:[54,1,1,""],delivery_info:[54,2,1,""],MessageStateError:[54,6,1,""],acknowledged:[54,2,1,""],ack_log_error:[54,1,1,""],payload:[54,2,1,""],decode:[54,1,1,""],headers:[54,2,1,""],content_encoding:[54,2,1,""],content_type:[54,2,1,""],reject:[54,1,1,""],delivery_tag:[54,2,1,""],requeue:[54,1,1,""],properties:[54,2,1,""],channel:[54,2,1,""]},"kombu.utils.limits.TokenBucket":{expected_time:[58,1,1,""],timestamp:[58,2,1,""],capacity:[58,2,1,""],can_consume:[58,1,1,""],fill_rate:[58,2,1,""]},"kombu.transport.virtual.Transport":{close_channel:[3,1,1,""],drain_events:[3,1,1,""],polling_interval:[3,2,1,""],establish_connection:[3,1,1,""],close_connection:[3,1,1,""],state:[3,2,1,""],create_channel:[3,1,1,""],default_port:[3,2,1,""],cycle:[3,2,1,""],Channel:[3,2,1,""],Cycle:[3,2,1,""]},"kombu.compat":{Publisher:[55,5,1,""],Consumer:[55,5,1,""],ConsumerSet:[55,5,1,""]},"kombu.transport.couchdb":{create_message_view:[28,4,1,""],Transport:[28,5,1,""],Channel:[28,5,1,""]},"kombu.transport.virtual.exchange.FanoutExchange":{lookup:[46,1,1,""],deliver:[46,1,1,""],type:[46,2,1,""]},"kombu.simple.SimpleBuffer":{queue_opts:[53,2,1,""],qsize:[53,1,1,""],producer:[53,2,1,""],get:[53,1,1,""],clear:[53,1,1,""],get_nowait:[53,1,1,""],queue:[53,2,1,""],exchange_opts:[53,2,1,""],channel:[53,2,1,""],put:[53,1,1,""],close:[53,1,1,""],consumer:[53,2,1,""],no_ack:[53,2,1,""],"__len__":[53,1,1,""]},"kombu.transport.librabbitmq.Connection.Channel.Message":{body:[54,2,1,""],reject_log_error:[54,1,1,""],reject:[54,1,1,""],ack:[54,1,1,""],delivery_info:[54,2,1,""],MessageStateError:[54,6,1,""],acknowledged:[54,2,1,""],ack_log_error:[54,1,1,""],payload:[54,2,1,""],decode:[54,1,1,""],headers:[54,2,1,""],content_encoding:[54,2,1,""],content_type:[54,2,1,""],delivery_tag:[54,2,1,""],requeue:[54,1,1,""],properties:[54,2,1,""],channel:[54,2,1,""]},"kombu.transport.mongodb.Transport.Channel":{get_table:[6,1,1,""],supports_fanout:[6,2,1,""],client:[6,2,1,""],queue_delete:[6,1,1,""],close:[6,1,1,""]},"kombu.transport.django.managers":{MessageManager:[30,5,1,""],select_for_update:[30,4,1,""],QueueManager:[30,5,1,""]},"kombu.transport.sqlalchemy.models":{Queue:[48,5,1,""],Message:[48,5,1,""]},"kombu.transport.sqlalchemy.models.Message":{sent_at:[48,2,1,""],id:[48,2,1,""],visible:[48,2,1,""],version:[48,2,1,""],queue_id:[48,2,1,""],payload:[48,2,1,""]},"kombu.transport.memory.Transport":{state:[15,2,1,""],Channel:[15,5,1,""]},"kombu.messaging.Producer":{compression:[2,2,1,""],exchange:[2,2,1,""],serializer:[2,2,1,""],revive:[2,1,1,""],publish:[2,1,1,""],routing_key:[2,2,1,""],auto_declare:[2,2,1,""],on_return:[2,2,1,""],declare:[2,1,1,""],channel:[2,2,1,""]},"kombu.utils.limits":{TokenBucket:[58,5,1,""]},"kombu.transport.django.Transport":{default_port:[40,2,1,""],connection_errors:[40,2,1,""],polling_interval:[40,2,1,""],Channel:[40,5,1,""],channel_errors:[40,2,1,""]},"kombu.transport.SQS.Transport.Channel.Table":{routes_for:[8,1,1,""],queue_bind:[8,1,1,""],create_binding:[8,1,1,""],queue_delete:[8,1,1,""],select:[8,1,1,""],exchange_delete:[8,1,1,""],get_exchanges:[8,1,1,""],get_item:[8,1,1,""],get_queue:[8,1,1,""]},"kombu.common":{collect_replies:[12,4,1,""],itermessages:[12,4,1,""],uuid:[12,4,1,""],Broadcast:[12,5,1,""],insured:[12,4,1,""],maybe_declare:[12,4,1,""],ipublish:[12,4,1,""],send_reply:[12,4,1,""],entry_to_queue:[12,4,1,""],isend_reply:[12,4,1,""]},"kombu.pidbox":{Node:[43,5,1,""],Mailbox:[43,5,1,""]},"kombu.transport.virtual.QoS":{get:[3,1,1,""],ack:[3,1,1,""],restore_unacked:[3,1,1,""],restore_unacked_once:[3,1,1,""],prefetch_count:[3,2,1,""],can_consume:[3,1,1,""],reject:[3,1,1,""],restore_at_shutdown:[3,2,1,""],append:[3,1,1,""]},"kombu.transport.virtual.Message":{body:[3,2,1,""],reject_log_error:[3,1,1,""],serializable:[3,1,1,""],ack:[3,1,1,""],delivery_info:[3,2,1,""],MessageStateError:[3,6,1,""],acknowledged:[3,2,1,""],ack_log_error:[3,1,1,""],payload:[3,2,1,""],decode:[3,1,1,""],headers:[3,2,1,""],content_encoding:[3,2,1,""],content_type:[3,2,1,""],reject:[3,1,1,""],delivery_tag:[3,2,1,""],requeue:[3,1,1,""],properties:[3,2,1,""],channel:[3,2,1,""]},"kombu.pidbox.Node":{handle:[43,1,1,""],handlers:[43,2,1,""],dispatch_from_message:[43,1,1,""],hostname:[43,2,1,""],state:[43,2,1,""],dispatch:[43,1,1,""],mailbox:[43,2,1,""],handle_call:[43,1,1,""],handler:[43,1,1,""],handle_cast:[43,1,1,""],handle_message:[43,1,1,""],reply:[43,1,1,""],Consumer:[43,1,1,""],channel:[43,2,1,""],listen:[43,1,1,""]},"kombu.exceptions":{TimeoutError:[0,2,1,""],MessageStateError:[0,6,1,""],ConnectionLimitExceeded:[0,6,1,""],LimitExceeded:[0,6,1,""],ChannelLimitExceeded:[0,6,1,""],NotBoundError:[0,6,1,""]},"kombu.utils.finalize":{Finalize:[32,5,1,""]},"kombu.transport.memory":{Transport:[15,5,1,""],Channel:[15,5,1,""]},"kombu.transport.librabbitmq.Connection.Channel":{no_ack_consumers:[54,2,1,""],basic_ack:[54,1,1,""],basic_reject:[54,1,1,""],basic_get:[54,1,1,""],is_open:[54,2,1,""],close:[54,1,1,""],recover:[54,1,1,""],exchange_declare:[54,1,1,""],exchange_delete:[54,1,1,""],queue_bind:[54,1,1,""],queue_unbind:[54,1,1,""],list_bindings:[54,1,1,""],basic_publish:[54,1,1,""],basic_consume:[54,1,1,""],queue_delete:[54,1,1,""],queue_declare:[54,1,1,""],queue_purge:[54,1,1,""],basic_qos:[54,1,1,""],after_reply_message_received:[54,1,1,""],basic_cancel:[54,1,1,""],Consumer:[54,1,1,""],Producer:[54,1,1,""],flow:[54,1,1,""],Message:[54,5,1,""],prepare_message:[54,1,1,""]},"kombu.transport.beanstalk":{Transport:[47,5,1,""],Channel:[47,5,1,""]},"kombu.pools.ProducerPool":{prepare:[37,1,1,""],Producer:[37,5,1,""],setup:[37,1,1,""],release:[37,1,1,""],"new":[37,1,1,""],create_producer:[37,1,1,""]},"kombu.transport.base.Transport":{close_channel:[31,1,1,""],channel_errors:[31,2,1,""],drain_events:[31,1,1,""],establish_connection:[31,1,1,""],client:[31,2,1,""],connection_errors:[31,2,1,""],create_channel:[31,1,1,""],default_port:[31,2,1,""],close_connection:[31,1,1,""]},"kombu.clocks":{LamportClock:[27,5,1,""]},"kombu.transport.librabbitmq.Channel":{Message:[54,5,1,""],prepare_message:[54,1,1,""]},"kombu.transport.memory.Transport.Channel":{queues:[15,2,1,""],do_restore:[15,2,1,""],after_reply_message_received:[15,1,1,""]},"kombu.pools.PoolGroup":{create:[37,1,1,""]},"kombu.transport.pika2.Connection.Channel":{basic_qos:[42,1,1,""],basic_get:[42,1,1,""],channel_id:[42,2,1,""],basic_publish:[42,1,1,""],basic_consume:[42,1,1,""],message_to_python:[42,1,1,""],queue_purge:[42,1,1,""],close:[42,1,1,""],Message:[42,5,1,""],prepare_message:[42,1,1,""]},"kombu.transport.virtual.exchange.TopicExchange":{wildcards:[46,2,1,""],prepare_bind:[46,1,1,""],deliver:[46,1,1,""],lookup:[46,1,1,""],key_to_pattern:[46,1,1,""],type:[46,2,1,""]},"kombu.transport.django.management.commands":{clean_kombu_messages:[5,0,1,""]},"kombu.messaging.Consumer":{qos:[2,1,1,""],consume:[2,1,1,""],register_callback:[2,1,1,""],callbacks:[2,2,1,""],receive:[2,1,1,""],queues:[2,2,1,""],cancel_by_queue:[2,1,1,""],flow:[2,1,1,""],revive:[2,1,1,""],declare:[2,1,1,""],purge:[2,1,1,""],cancel:[2,1,1,""],channel:[2,2,1,""],on_decode_error:[2,2,1,""],recover:[2,1,1,""],no_ack:[2,2,1,""],auto_declare:[2,2,1,""]},"kombu.transport.amqplib.Channel":{basic_cancel:[18,1,1,""],basic_consume:[18,1,1,""],message_to_python:[18,1,1,""],close:[18,1,1,""],Message:[18,5,1,""],events:[18,2,1,""],prepare_message:[18,1,1,""]},"kombu.transport.django.models.Message":{queue:[24,2,1,""],MultipleObjectsReturned:[24,6,1,""],objects:[24,2,1,""],DoesNotExist:[24,6,1,""]},"kombu.utils.compat.CompatOrderedDict":{fromkeys:[19,7,1,""],setdefault:[19,1,1,""],keys:[19,1,1,""],items:[19,1,1,""],clear:[19,1,1,""],popitem:[19,1,1,""],update:[19,1,1,""],pop:[19,1,1,""],values:[19,1,1,""],itervalues:[19,1,1,""],iteritems:[19,1,1,""],copy:[19,1,1,""],iterkeys:[19,1,1,""]},"kombu.transport.virtual.BrokerState":{clear:[3,1,1,""],bindings:[3,2,1,""],exchanges:[3,2,1,""]},"kombu.transport.librabbitmq.Transport":{create_channel:[54,1,1,""],channel_errors:[54,2,1,""],establish_connection:[54,1,1,""],drain_events:[54,1,1,""],Connection:[54,5,1,""],nb_keep_draining:[54,2,1,""],default_connection_params:[54,2,1,""],eventmap:[54,1,1,""],connection_errors:[54,2,1,""],on_poll_init:[54,1,1,""],default_port:[54,2,1,""],on_poll_start:[54,1,1,""],close_connection:[54,1,1,""]},"kombu.transport.redis.Transport.Channel.QoS":{unacked_index_key:[41,2,1,""],unacked_key:[41,2,1,""],restore_visible:[41,1,1,""],ack:[41,1,1,""],restore_unacked:[41,1,1,""],restore_by_tag:[41,1,1,""],client:[41,2,1,""],visibility_timeout:[41,2,1,""],reject:[41,1,1,""],restore_at_shutdown:[41,2,1,""],append:[41,1,1,""]},"kombu.transport.sqlalchemy.Transport.Channel":{session:[1,2,1,""]},"kombu.log":{setup_logging:[44,4,1,""],LogMixin:[44,5,1,""],get_loglevel:[44,4,1,""]},"kombu.connection":{ChannelPool:[56,5,1,""],ConnectionPool:[56,5,1,""],BrokerConnection:[56,5,1,""]},"kombu.transport.sqlalchemy.models.Queue":{messages:[48,2,1,""],id:[48,2,1,""],name:[48,2,1,""]},"kombu.transport.virtual.exchange.DirectExchange":{lookup:[46,1,1,""],type:[46,2,1,""],deliver:[46,1,1,""]},"kombu.transport.django":{models:[24,0,1,""],managers:[30,0,1,""],Channel:[40,5,1,""],Transport:[40,5,1,""]},"kombu.compat.ConsumerSet":{add_consumer_from_dict:[55,1,1,""],qos:[55,1,1,""],consume:[55,1,1,""],cancel_by_queue:[55,1,1,""],cancel:[55,1,1,""],consuming_from:[55,1,1,""],on_decode_error:[55,2,1,""],close:[55,1,1,""],recover:[55,1,1,""],auto_declare:[55,2,1,""],revive:[55,1,1,""],channel:[55,2,1,""],register_callback:[55,1,1,""],callbacks:[55,2,1,""],add_queue:[55,1,1,""],iterconsume:[55,1,1,""],add_consumer:[55,1,1,""],receive:[55,1,1,""],queues:[55,2,1,""],flow:[55,1,1,""],no_ack:[55,2,1,""],purge:[55,1,1,""],connection:[55,2,1,""],discard_all:[55,1,1,""],declare:[55,1,1,""]},"kombu.transport.django.models.Queue":{MultipleObjectsReturned:[24,6,1,""],objects:[24,2,1,""],messages:[24,2,1,""],DoesNotExist:[24,6,1,""]},"kombu.transport.sqlalchemy.Transport":{channel_errors:[1,2,1,""],connection_errors:[1,2,1,""],Channel:[1,5,1,""],default_port:[1,2,1,""]},"kombu.transport.couchdb.Transport.Channel":{client:[28,2,1,""],view_created:[28,2,1,""]},"kombu.abstract.MaybeChannelBound":{is_bound:[22,2,1,""],when_bound:[22,1,1,""],bind:[22,1,1,""],revive:[22,1,1,""],maybe_bind:[22,1,1,""],can_cache_declaration:[22,2,1,""],channel:[22,2,1,""]},"kombu.transport.beanstalk.Transport.Channel":{close:[47,1,1,""],client:[47,2,1,""]},"kombu.entity.Queue":{exclusive:[25,2,1,""],when_bound:[25,1,1,""],consume:[25,1,1,""],auto_delete:[25,2,1,""],attrs:[25,2,1,""],cancel:[25,1,1,""],queue_bind:[25,1,1,""],durable:[25,2,1,""],exchange:[25,2,1,""],routing_key:[25,2,1,""],queue_declare:[25,1,1,""],channel:[25,2,1,""],get:[25,1,1,""],maybe_bind:[25,1,1,""],binding_arguments:[25,2,1,""],unbind:[25,1,1,""],name:[25,2,1,""],declare:[25,1,1,""],purge:[25,1,1,""],alias:[25,2,1,""],queue_arguments:[25,2,1,""],can_cache_declaration:[25,2,1,""],no_ack:[25,2,1,""],"delete":[25,1,1,""]},"kombu.transport.pika2":{Transport:[42,5,1,""],Message:[42,5,1,""],Connection:[42,5,1,""],Channel:[42,5,1,""]},"kombu.transport.librabbitmq.Transport.Connection":{Message:[54,5,1,""],Channel:[54,5,1,""]},"kombu.entity.Exchange":{name:[25,2,1,""],arguments:[25,2,1,""],auto_delete:[25,2,1,""],delivery_mode:[25,2,1,""],PERSISTENT_DELIVERY_MODE:[25,2,1,""],publish:[25,1,1,""],declare:[25,1,1,""],TRANSIENT_DELIVERY_MODE:[25,2,1,""],maybe_bind:[25,1,1,""],attrs:[25,2,1,""],can_cache_declaration:[25,2,1,""],Message:[25,1,1,""],type:[25,2,1,""],durable:[25,2,1,""],channel:[25,2,1,""],"delete":[25,1,1,""]},"kombu.transport.django.managers.MessageManager":{connection_for_write:[30,1,1,""],cleanup:[30,1,1,""],cleanup_every:[30,2,1,""],pop:[30,1,1,""]},"kombu.transport.beanstalk.Transport":{channel_errors:[47,2,1,""],connection_errors:[47,2,1,""],default_port:[47,2,1,""],Channel:[47,5,1,""],polling_interval:[47,2,1,""]},"kombu.transport.librabbitmq":{Message:[54,5,1,""],Channel:[54,5,1,""],Connection:[54,5,1,""],Transport:[54,5,1,""]},"kombu.transport.beanstalk.Channel":{close:[47,1,1,""],client:[47,2,1,""]},"kombu.abstract":{MaybeChannelBound:[22,5,1,""]},"kombu.mixins":{ConsumerMixin:[23,5,1,""]},"kombu.mixins.ConsumerMixin":{connect_max_retries:[23,2,1,""],run:[23,1,1,""],consume:[23,1,1,""],should_stop:[23,2,1,""],restart_limit:[23,2,1,""],on_connection_revived:[23,1,1,""],get_consumers:[23,1,1,""],establish_connection:[23,1,1,""],on_iteration:[23,1,1,""],on_consume_ready:[23,1,1,""],on_decode_error:[23,1,1,""],on_connection_error:[23,1,1,""],connection_errors:[23,2,1,""],on_consume_end:[23,1,1,""],maybe_conn_error:[23,1,1,""],channel_errors:[23,2,1,""],extra_context:[23,1,1,""],Consumer:[23,1,1,""]},"kombu.simple":{SimpleBuffer:[53,5,1,""],SimpleQueue:[53,5,1,""]},"kombu.transport.memory.Channel":{queues:[15,2,1,""],do_restore:[15,2,1,""],after_reply_message_received:[15,1,1,""]},"kombu.transport.virtual.exchange":{DirectExchange:[46,5,1,""],ExchangeType:[46,5,1,""],FanoutExchange:[46,5,1,""],TopicExchange:[46,5,1,""]},"kombu.utils.url":{parse_url:[7,4,1,""]},"kombu.compression":{encoders:[45,4,1,""],get_encoder:[45,4,1,""],register:[45,4,1,""],compress:[45,4,1,""],decompress:[45,4,1,""],get_decoder:[45,4,1,""]},"kombu.transport.redis":{Channel:[41,5,1,""],Transport:[41,5,1,""]},kombu:{compat:[55,0,1,""],compression:[45,0,1,""],simple:[53,0,1,""],pools:[37,0,1,""],"abstract":[22,0,1,""],mixins:[23,0,1,""],syn:[9,0,1,""],entity:[25,0,1,""],exceptions:[0,0,1,""],connection:[56,0,1,""],clocks:[27,0,1,""],common:[12,0,1,""],messaging:[39,0,1,""],pidbox:[43,0,1,""],serialization:[11,0,1,""],utils:[38,0,1,""],transport:[10,0,1,""],log:[44,0,1,""]},"kombu.utils.debug":{setup_logging:[52,4,1,""],Logwrapped:[52,5,1,""]},"kombu.clocks.LamportClock":{forward:[27,1,1,""],adjust:[27,1,1,""],value:[27,2,1,""]},"kombu.syn":{detect_environment:[9,4,1,""]},"kombu.transport.mongodb":{Channel:[6,5,1,""],Transport:[6,5,1,""]},"kombu.compat.Consumer":{exclusive:[55,2,1,""],qos:[55,1,1,""],consume:[55,1,1,""],no_ack:[55,2,1,""],auto_delete:[55,2,1,""],cancel_by_queue:[55,1,1,""],routing_key:[55,2,1,""],on_decode_error:[55,2,1,""],consuming_from:[55,1,1,""],cancel:[55,1,1,""],close:[55,1,1,""],recover:[55,1,1,""],auto_declare:[55,2,1,""],purge:[55,1,1,""],durable:[55,2,1,""],revive:[55,1,1,""],iterqueue:[55,1,1,""],channel:[55,2,1,""],register_callback:[55,1,1,""],exchange:[55,2,1,""],callbacks:[55,2,1,""],wait:[55,1,1,""],add_queue:[55,1,1,""],iterconsume:[55,1,1,""],process_next:[55,1,1,""],receive:[55,1,1,""],queues:[55,2,1,""],flow:[55,1,1,""],fetch:[55,1,1,""],queue:[55,2,1,""],connection:[55,2,1,""],discard_all:[55,1,1,""],exchange_type:[55,2,1,""],declare:[55,1,1,""]},"kombu.transport.django.Transport.Channel":{basic_consume:[40,1,1,""],refresh_connection:[40,1,1,""]},"kombu.pools.ProducerPool.Producer":{revive:[37,1,1,""],exchange:[37,2,1,""],serializer:[37,2,1,""],on_return:[37,2,1,""],publish:[37,1,1,""],maybe_declare:[37,1,1,""],connection:[37,2,1,""],routing_key:[37,2,1,""],auto_declare:[37,2,1,""],release:[37,1,1,""],close:[37,1,1,""],declare:[37,1,1,""],channel:[37,2,1,""],compression:[37,2,1,""]},"kombu.transport.django.managers.QueueManager":{purge:[30,1,1,""],fetch:[30,1,1,""],publish:[30,1,1,""],size:[30,1,1,""]},"kombu.utils.functional":{promise:[13,5,1,""],maybe_promise:[13,4,1,""]},"kombu.utils":{compat:[19,0,1,""],reprcall:[38,4,1,""],kwdict:[38,4,1,""],finalize:[32,0,1,""],limits:[58,0,1,""],encoding:[4,0,1,""],url:[7,0,1,""],emergency_dump_state:[38,4,1,""],functional:[13,0,1,""],fxrange:[38,4,1,""],nested:[38,4,1,""],EqualityDict:[38,5,1,""],cached_property:[38,2,1,""],say:[38,4,1,""],maybe_list:[38,4,1,""],debug:[52,0,1,""],retry_over_time:[38,4,1,""],fxrangemax:[38,4,1,""],reprkwargs:[38,4,1,""],uuid:[38,4,1,""]},"kombu.transport.mongodb.Channel":{get_table:[6,1,1,""],supports_fanout:[6,2,1,""],client:[6,2,1,""],queue_delete:[6,1,1,""],close:[6,1,1,""]},"kombu.utils.encoding":{str_to_bytes:[4,4,1,""],bytes_to_str:[4,4,1,""],safe_str:[4,4,1,""],default_encoding:[4,4,1,""],default_encode:[4,4,1,""],ensure_bytes:[4,4,1,""],from_utf8:[4,4,1,""],safe_repr:[4,4,1,""]},"kombu.transport.couchdb.Transport":{default_port:[28,2,1,""],connection_errors:[28,2,1,""],polling_interval:[28,2,1,""],Channel:[28,5,1,""],channel_errors:[28,2,1,""]},"kombu.transport.virtual":{AbstractChannel:[3,5,1,""],exchange:[46,0,1,""],BrokerState:[3,5,1,""],Channel:[3,5,1,""],scheduling:[51,0,1,""],QoS:[3,5,1,""],Message:[3,5,1,""],Transport:[3,5,1,""]},"kombu.messaging":{Consumer:[2,5,1,""],Producer:[2,5,1,""]},"kombu.utils.compat":{LifoQueue:[19,5,1,""],CompatOrderedDict:[19,5,1,""]},"kombu.transport.base":{Message:[31,5,1,""],Transport:[31,5,1,""]}},terms:{fanoutexchang:[3,46],interchang:29,four:[16,25],restore_by_tag:41,prefix:50,sleep:[3,38,56,50],sqserror:8,typeerror:38,under:[16,57],spec:[37,2,39,55],retry_polici:[2,50,37,39,55,12],everi:[13,50,16,34,17,38,23,56,57,12],queue_id:[48,24],affect:[16,2,49,55,50],exchange_opt:[53,56],rabbitmq:[2,50,16,49,33,25,55],is_open:54,use_default_limit:57,readthedoc:16,queue_argu:25,maybe_list:38,direct:[43,16,3,35,20,21,54,25,55,46,34],preconditionfail:28,second:[50,20,38,23,56,58],even:[16,20,11,50,25],aim:16,dialogu:25,eventlet:[23,50],logmixin:44,connection_error:[47,1,50,54,31,18,8,23,6,40,56,28,42],key_to_pattern:46,"new":[2,11,16,34,49,50,45,37,25,55,56,57,19,58],ever:[50,25],abov:[29,34,17],never:34,here:[16,29,57,12],"__hash__":50,path:[20,10,50],interpret:[16,25],jame:50,emergency_dump_st:38,duplicateconsumertag:42,findandmodifi:50,celerybeat:43,articl:[16,57,25],"byte":50,unit:16,highli:16,describ:[11,8,25],would:[11,34,23,50],jaekel:50,call:[0,13,29,2,16,34,49,50,43,20,22,23,37,25,55,39,56,57],until:[2,34,49,38,25,55,56,57],establis:50,type:[37,2,45,46,47,16,3,50,51,35,18,17,20,54,39,25,55,43,11],channelerror:54,science_new:25,isend_repli:12,get_exchang:8,relat:[27,50],warn:[2,50,49,44,55,56,58],phone:34,jpg:17,loss:[2,50,49,37,39,55],hold:25,set_limit:[37,57,50],must:[37,2,31,50,16,3,49,18,20,38,54,23,25,55,39,34],join:[16,23],active_queu:41,restor:3,setup:[16,37],work:[20,33,34,17,50],default_transport:10,conceptu:27,undeliv:50,root:[16,50],overrid:[37,2,39,23,55],give:[2,50,49,38,8,25,55,56,57],indic:[14,18],unavail:23,want:[2,11,3,49,50,17,18,20,39,57],producerpool:[37,50],cutekitten:29,david:[47,28,50],end:[55,2,49,50],replicaset:50,quot:50,interval_step:[38,56],how:[38,56],sever:[16,20,49,34,44],answer:33,turk:50,get_consum:[49,23,35],connect_timeout:[20,56],updat:[34,19,50],subsecond:50,outsid:[16,23],initial_valu:27,after:[37,2,50,16,49,18,20,22,54,23,55,39,57],befor:[2,50,16,37,38,39,55,56,27,57],wrong:50,acquire_channel:50,demonstr:50,attempt:[55,2,49],classmethod:19,credenti:50,exclud:46,alias:[20,45,10,50],maintain:[27,57,17,50],environ:50,enter:[23,50],exclus:[55,54,25],fan:16,first:50,order:[2,49,19],origin:[2,31,16,3,49,54,23,55,34],method_id:18,over:[38,34,17],failur:[31,23,12,18,50],becaus:[50,25],fifo:[19,50],varg:6,on_poll_start:[54,18,41],uuid:[38,12,50],fit:[34,17],fix:[16,50],better:[17,50],persist:[29,50,53,21,25,56,34],easier:20,them:[29,50,16,20,25,34],thei:[29,16,34,49,17,25,57],safe:[4,58],as_dict:50,promis:13,ipublish:12,"0x102912a28":25,bank:34,choic:17,queue_bind:[54,3,8,25],localis:18,timeout:[0,29,50,16,3,49,43,18,20,54,23,53,56,57,12,42],each:[3,51,17,38,25,56,27,34],debug:[14,50,35,52,21,44],side:18,mean:[2,31,50,3,49,34,18,20,54,25,55,27,57],discard_al:55,msgpack:[11,17],unbound:[0,16,25],goe:3,invaliddata:50,content:[14,2,49,50,17,18,37,39,55,11,34],got:[57,23,35],situat:34,standard:[16,29,46,17,50],pika:[14,50,16,20,21,26,42],can_cache_declar:[22,25],traceback:56,prefetch:[55,3,49,2],add_consumer_from_dict:55,safe_str:4,attapattu:25,do_restor:[3,15],loginerror:42,wast:17,system:50,instruct:17,alreadi:[0,2,31,16,3,49,37,22,54,39,25,55,57],installed_app:50,primari:17,castaneda:50,restart_limit:23,top:[16,50],mcgee:50,sometim:34,necessarili:25,too:[16,57,23,50],listen:[43,50],namespac:43,channel2:49,channel1:49,keyword:[37,2,50,36,20,38,23,55,39,56,12],provid:[50,16,18,20,38,25,56,12],zero:[16,2,49,55,25],project:16,minut:[34,25],enable_callback:55,if_empti:[3,54,25],add_queu:55,raw:[3,11,17,36,25],binding_argu:25,increment:27,"__main__":[29,35],incompat:50,next_token:8,recreat:50,latter:[29,11],insur:12,kombu_log_channel:50,shall:50,bst:50,object:[29,11,15,32,16,3,50,17,22,23,24,25,56,57,19],what:[34,57,36,50],regular:16,brpop:50,letter:[34,50],bsd:[0,3,4,6,8,9,10,11,19,15,16,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,51,52,53,54,55,56,58],don:[16,57,17,50],flow:[55,3,49,54,2],doe:[2,50,16,49,10,25,55],declar:[37,2,50,16,3,49,20,22,54,39,25,55,53,57],wildcard:[46,25],dot:[16,46,25],"__str__":13,speedup:17,syntax:50,eventmap:[54,18],create_bind:8,identifi:[50,45,25],celeri:16,despit:12,acquir:[56,57,35,50],configur:[37,2,16,50,20,39,55,56,12],latenc:50,create_message_view:28,stop:[55,2,38,23,49],amazon:[16,8,50],popitem:19,report:[16,50],method:[0,13,31,46,2,3,49,50,17,18,45,20,54,23,37,25,55,39,43,11,56],twice:22,bad:34,respond:[18,25],basic_ack:[54,3,8],num:41,mandatori:[2,50,37,54,39,25,55,42],result:[56,50],recursiveoperationdetect:42,respons:[50,25],fail:[18,50],channel_or_connect:16,best:[16,20,57,17],hopefulli:[38,12],default_region:8,databas:[16,20,40,50],wikipedia:[16,27,58],unack:[3,41],awai:[34,57],attribut:[50,16,17,23,25,56,46],default_seri:11,pylibrabbitmq:50,xrang:29,lamport:[27,50],lazi:54,supports_fanout:[50,16,6,41,20,8,46],howev:[17,50],against:57,logic:[27,50],com:[16,58],kwd:[38,23,19],sullivan:50,guid:[14,36],assum:25,three:11,been:[0,2,31,50,16,3,49,37,22,54,23,55,39,56,57],much:[38,34],force_close_al:50,interest:34,basic:[29,2,50,49,33,36,20,23,39],"__len__":53,life:34,fill_rat:58,lifo:[19,50],worker:[23,35],setup_log:[52,35,44],mher:50,ani:[2,50,16,49,17,18,23,25,55,56,46,57],"catch":38,ident:[16,52,25],servic:[2,3,49,21,55,34],properti:[2,31,50,16,3,18,37,38,54,39,25,55,42],seral:50,"typeof":3,aid:18,visibility_timeout:[8,41],transport_opt:[20,56,8,50],conninfo:8,tabl:[14,50,16,3,6,20,8,10,25,46],kwarg:[1,3,4,6,8,12,13,15,44,18,22,23,24,25,46,28,30,31,32,35,41,37,38,40,42,43,47,50,51,53,54,55,56],consuming_from:[55,50],vendor:16,conn:[29,50,16,35,56,57,12],hong:50,datetim:29,perform:[2,50,16,49,23,25,55,12],suggest:16,make:[29,50,16,33,20,23,25],couchdb:[14,50,16,20,21,28],task_queu:[23,35],complet:[56,12],hang:50,hand:34,fairli:[3,17],rais:[2,31,11,16,3,49,50,35,38,54,23,25,55,56,57],refil:58,kept:[16,20],scenario:[34,36],cjson:[17,50],inherit:[3,50],client:[1,3,6,8,15,16,18,20,25,28,2,31,35,41,40,42,43,47,50,49,54,55],thi:[3,54,12,16,18,20,22,23,25,46,29,2,31,45,37,38,39,43,11,27,50,34,49,55,56,57,58],left:57,protocol:[16,46],just:[16,50,57,25],on_return:[37,2,39,55],"0x1026a6d50":11,human:34,yet:[20,50],languag:17,previous:[45,50],easi:16,djkombu:50,consumer_tag:[50,54,3,18,41,8,25,42],raw_messag:[3,18,42],had:[34,50],reiniti:50,east:8,opt:12,applic:[43,11,50,16,34,4,25,57],mayb:34,preserv:25,servererror:28,specif:[2,50,49,18,20,25,55,56,46],arbitrari:[37,2,39,55,50],manual:[2,50,16,49,39,25],unstabl:50,unnecessari:11,underli:[56,50],old:50,interv:[38,50,23,56,41],dead:50,intern:[38,56,18],metzlar:50,amqp_protocol_head:50,subclass:[55,3,49,2],buffer:[29,21,56,53,50],tracker:[16,14],condit:[18,50],foo:[20,50],localhost:[29,50,16,35,20,54,56,57],core:[40,50],idiomat:16,uncompress:45,stefan:50,ivan:50,lamportclock:[27,50],peer:[55,2,49,18],post:[34,25],"super":23,obj:[4,56,32],slightli:29,beta:50,commit:50,produc:[29,14,36,2,16,34,50,17,35,20,21,54,39,37,55,53,56,57,12],"float":[17,50],encod:[29,14,2,16,4,50,17,18,45,37,21,39,25,55,11],bound:[43,50,16,22,25,46],down:[55,2,49,18],wrap:50,wai:[56,34,50],compatordereddict:19,support:[37,2,52,11,16,3,49,33,17,35,20,56,23,25,55,39,50,46,57,12],task_exchang:35,undeliverablewarn:50,"class":[1,2,3,6,44,8,10,19,13,14,15,17,18,12,20,21,22,23,24,25,27,28,29,30,31,32,35,41,37,38,39,40,42,43,47,46,50,48,49,51,52,53,54,55,56,58],avail:[2,11,16,34,49,50,45,20,25,55,56,57,58],joseph:50,war:34,fork:[57,50],forc:[37,11,56,18,50],recommend:[54,56,50,25],sqlalchemi:[14,1,50,16,48,21],safeguard:57,"true":[3,6,8,19,16,18,20,23,25,46,29,2,31,35,41,37,39,43,50,49,53,54,55,56,57,58],reset:[37,57,50],attr:[38,25],bugfix:50,maximum:[0,38,23,56,27,58],tell:20,unacked_index_kei:41,emit:[4,50],featur:[14,50,16,2,37,39],"abstract":[3,22],proven:16,exist:[50,8,25],read_timeout:18,ship:[57,50],check:[20,50,25],verify_connect:18,content_encod:[2,31,11,3,17,18,37,54,39,25,55,42],excel:29,test:[16,50],pymongo:[6,50],shrink:57,node:[43,21],consid:[27,50],from_utf8:4,receiv:[29,2,31,16,49,36,18,20,54,25,55,53,27,34],faster:34,filterfunc:55,resourceconflict:28,interval_start:[38,56,50],ignor:[2,50,49,54,23,55],time:[29,34,50,3,38,23,56,27,57,58],reply_to:43,unicodedecodeerror:4,concept:16,snif:50,skip:[22,50],global:[2,15,50,49,55,57],anand:50,depend:[0,50,16,20,25,56],aspn:58,show:50,dispatch_from_messag:43,domain_format:8,x06:41,sourc:16,"__exit__":50,string:[14,11,4,50,17,20,21,10,25,56],register_group:37,on_messag:49,forker:50,drain_ev:[43,31,50,16,3,49,18,54,56,42],word:[16,46,25],exact:46,level:[16,29,57,44],did:[33,50],messagestateerror:[0,3,31,54],exchangetyp:46,iter:[56,8,23],item:[11,56,8,19],tokenbucket:58,quick:16,slower:17,sign:34,cost:34,port:[31,50,16,3,18,20,54,56],on_task:23,establish_connect:[31,3,18,54,23,42],lazili:56,repli:[43,50,18,54,25,34],get_logg:44,current:[29,2,50,3,49,43,37,22,39,25,55,53,56,27,57],transport_alias:10,gener:[43,14,50,37,21,38,25,12],unauthor:28,equalitydict:38,unacked_kei:41,address:[56,34],along:[37,2,39,55],wait:[2,16,49,18,25,55,56,34],queue_name_prefix:[8,50],queue:[3,6,8,12,15,16,20,21,23,24,25,46,29,2,31,35,36,40,41,42,50,48,49,53,54,55,56],prefetch_count:[2,3,49,54,55,42],throughput:34,maybe_declar:[2,50,35,37,22,39,55,57,12],extrem:50,bound_exchang:[16,25],uri_prefix:56,rafael:50,semant:[56,54,50],regardless:56,str_to_byt:4,extra:23,modul:[14,56,17,50],visibl:[48,24],instal:[16,14,50,11],regex:46,limitexceed:[0,56],memori:[14,15,50,16,3,20,21,25,34],eletzhof:50,todai:34,handler:[43,23,32],criteria:25,msg:[12,18],scope:[3,32],prev:46,create_produc:37,faircycl:[3,51],peopl:34,send_repli:12,ctype:50,simplebuff:[29,53,56,50],cached_properti:38,unseri:11,content_typ:[2,31,11,3,50,17,18,45,37,54,39,25,55,42],prepar:[37,3,38],uniqu:[38,50,12,25],descriptor:[38,54],can:[3,54,12,16,17,18,20,22,23,25,27,29,2,31,38,39,11,50,34,49,55,56,57,58],pidbox:[43,14,21],encapsul:[54,18],stream:11,topic:[16,3,20,21,25,46,34],critic:[34,44],exchange_delet:[54,3,8],occur:[2,49,11,56,25],alwai:[16,20,56,50,25],multipl:[50,49,20,38,54,23,57],kombuerror:50,write:50,purg:[55,30,49,2,25],map:[43,2,3,37,39,10,55,46],product:50,max:38,clone:[56,50],known_host:50,mixin:[14,50,49,35,21,22,23],date:[29,21,50,17,36],drastic:50,data:[29,43,11,3,50,17,18,36,21,54,10],grow:57,gethostnam:29,practic:[16,20],stdin:56,marshal:11,inform:25,"switch":50,combin:38,media_exchang:16,ttr:50,objectdoesnotexist:40,"_global":54,sqsdecodeerror:8,still:[55,2,49,34,50],amqpchannelexcept:18,entiti:[0,14,2,49,50,37,21,22,39,25,55,57,12],group:[37,57,36],polici:50,amqplib:[14,50,16,18,20,21,10],yaml:[11,17],window:[55,2,49],mail:[16,34],non:[16,3,50,25],connect_max_retri:23,synopsi:[16,14],myvhost:20,initi:[3,50],amqp_messag:42,restore_unacked_onc:3,now:[50,38,25,12,17],introduct:[43,14,16,36,21,34],term:[55,2,49],name:[29,2,43,11,16,48,49,50,45,20,38,8,24,10,25,55,53,56,12],drop:50,separ:[16,56,46,50,25],attributeerror:[18,50],courag:34,x16:41,errback:[56,38,12],domain:[16,8,25],replac:[55,4],individu:50,persistent_delivery_mod:25,contrib:50,autent:50,default_connection_param:[54,50,18,42],year:34,urlpars:50,happen:[29,2,31,50,16,37,39,55,34],"0x104270450":15,max_retri:[38,56,50],correct:50,earlier:33,migrat:50,domest:57,million:34,orm:[16,50],mime:[11,45,50],process_task:35,org:[16,55,58,50],close_connect:[3,31,54,18,42],care:57,setdefault:19,synchron:[3,25,21,27,14],fromtimestamp:29,refus:50,recov:[2,50,3,49,54,55,34],turn:50,place:50,"0x10264fdf0":19,log_messag:29,star:[16,25],frequent:[14,33],lambda:25,oper:[13,2,50,16,49,25,55,56],create_transport:56,directli:[3,50],onc:[3,57],yourself:23,"long":[38,50,34,25],"6dev":50,open:[50,16,17,20,38,56],size:[30,50,16,49,2,55],given:50,fmt:38,slept:56,silenc:50,basic_publish:[3,54,42],conveni:[57,50,23,12,11],routing_kei:[43,2,16,3,54,35,17,37,8,39,25,55,53,56,46,57,42],copi:[56,22,46,19],specifi:[29,2,31,11,3,49,50,17,20,39,37,10,25,55,56,12],broadcast:[43,46,34,12,50],github:16,handle_cast:43,than:[2,50,16,34,49,17,25,55,27,57],connectionpool:[56,57,50],were:[50,25],posit:38,conn2:57,conn1:57,no_ack:[2,50,54,3,49,53,8,25,55,56,42],transport:[1,3,6,8,10,14,15,16,18,20,21,24,26,46,28,30,31,36,41,40,42,47,50,48,51,54,56],seri:50,simpledb:[16,20,8,50],sai:38,argument:[29,2,43,50,3,49,36,20,38,54,23,37,25,55,39,56,46,57,12],deliv:[2,16,49,25,55,46,34],notbounderror:[0,16],notimplementederror:[55,3,49,2],channel_numb:42,destroi:50,note:[2,11,50,17,37,39,25,55,56,57],take:[2,38,23,49,25],channel:[0,1,3,6,8,12,15,16,17,18,20,21,22,23,25,46,28,29,2,31,35,41,37,39,40,42,43,47,50,49,52,53,54,55,56],sure:[33,23],multipli:50,unsuccess:3,price:34,compress:[29,14,2,16,50,35,45,37,21,22,39,55,53,57],greenthread:23,add_consum:55,pair:[56,19,25],entry_to_queu:[12,50],later:[20,34,50],amqpconnectionexcept:18,runtim:57,gracefulli:16,recipi:[55,2,49,34],type_to_nam:50,serializ:3,should_stop:23,onli:[29,11,50,16,3,20,25,27,34],explicitli:[20,25],priority_step:41,transact:[3,34,50],activ:[2,3,49,54,25,55,56,57],state:[43,15,3,21,38,25,46],dict:[20,56],get:[29,14,16,3,51,45,6,53,38,8,10,25,56,46,57],kombu_log_debug:50,lifoqueu:[19,50],ssl:[20,56,50],cannot:18,jpeg:17,munz:50,requir:[29,2,50,37,39,55,23,46,34],fileno:[54,41],item_nam:8,intermitt:12,get_manag:18,scott:50,where:[50,51,38,23,25,57],wiki:58,parse_url:7,consumerset:[55,21,50],fanout:[43,50,16,3,20,21,25,46,34],if_unus:[3,54,25],infinit:55,can_consum:[3,58],detect:[2,50,17,18,37,39,55],enough:33,between:[2,50,3,37,38,39,25,55,56,27],"import":[29,50,16,34,49,35,20,23,25,57],across:16,connection_for_writ:30,cycl:[3,17],prepare_messag:[3,54,18,42],come:[29,34,50],prepare_bind:46,region:[8,50],mani:[56,34,17,50],improp:50,cancer:25,overview:[16,21,11],period:34,pop:[30,19],dispatch:[43,2,49,55,18],colon:56,cancel:[43,2,32,16,3,49,50,23,25,55],poll:[3,50,25],resynchron:27,mari:50,transient_delivery_mod:25,addit:[29,2,50,20,38,23,37,25,55,39,56,12,53],former:29,"case":[11,50,57,17,25],exchange_typ:[55,3],hello_task:35,cast:43,parse_qsl:50,advantag:[17,25],henc:25,destin:[43,25],syncdb:50,strain:50,myapp:50,abstractchannel:3,ascii:11,"__init__":[29,49,23,35],develop:[16,50],author:[16,50],media:16,same:[29,50,16,49,17,20,25,56,57],binari:[11,50,17,25],refresh_connect:40,document:[16,14,56,20,55],week:34,finish:[55,2,49,25],nest:[38,49],decompress:45,improv:[55,2,49],basic_return:18,"0x1041d2e90":24,drain:[2,3,49,37,39,23],polling_interv:[47,50,3,6,41,8,40,28],reload_schedul:43,myq:50,without:[50,4,17,36,20,25],maybe_promis:13,model:[14,48,24,21],execut:32,when:[3,10,13,16,17,18,20,22,23,25,27,29,2,31,32,37,38,39,50,49,55,56,34,58],on_consume_end:23,protocolsyntaxerror:42,safety_interv:23,monei:34,aws_access_key_id:50,as_uri:[57,50],except:[0,1,3,4,6,8,14,16,17,18,21,23,24,28,2,11,35,37,38,39,40,42,47,50,49,51,54,56,57],blog:25,earli:57,around:17,read:[16,17,25],lolcat1:16,insist:[20,56],amq:[3,46,18],world:[35,50],postal:34,integ:[50,25],server:[2,31,50,16,3,49,18,20,54,25,55,56],from_dict:55,either:[16,38,34,25],manag:[50,30,14,3,5,21,38,23,24,57],cancel_by_queu:[55,2,49,50],eventloop:50,authent:50,queue_unbind:54,tube:57,achiev:34,video_queu:16,notabl:17,refer:[14,50,49,17,36,21,39],broker:[2,50,16,3,49,34,18,54,25,55,56,57,12,42],broken:50,maybe_bind:[22,25],aquir:50,"__name__":[29,35],comparison:[16,14,20,36],central:[11,34],cleanup_everi:30,ack:[29,31,50,16,3,49,35,41,54,23],activest:58,terminolog:[16,14],unregist:[11,50],your:[50,16,34,33,17,20,25,57],log:[29,14,50,44,18,21,23],aren:57,strict:34,interfac:[29,14,31,50,16,36,53,21,55,56,46],low:35,hard:34,register_callback:[16,2,49,55],connection_info:43,tupl:[11,31,46,38],queue_declar:[54,3,50,25],shamelessli:25,longer:50,iterkei:19,reappli:56,possibl:[16,11,57,50],"default":[3,8,10,19,16,17,18,12,20,23,25,46,2,31,36,37,39,11,50,49,55,56,57],bucket:58,deadlock:57,connect:[0,1,3,8,12,14,15,16,18,20,21,22,23,25,28,29,2,31,35,36,37,38,39,40,42,43,47,50,49,52,54,55,56,57],creat:[29,37,50,43,20,22,8,25,56,57],multipleobjectsreturn:[24,40],certain:50,decreas:50,file:[16,56,54,17],girlfriend:34,again:[38,49],logger_nam:44,exitprior:32,flavio:[6,50],field:[20,25],subclient:41,cleanup:[30,50,32],collis:[38,12],you:[29,2,31,11,16,3,49,50,34,17,20,54,23,25,39,56,57,12],reply_text:18,registri:[21,50,45,11],kombu_polling_interv:50,pool:[37,14,50,35,36,20,21,56,57,12],unbind:25,directori:[16,50],chauvet:50,descript:25,potenti:[55,2,49,50],all:[2,50,16,3,49,34,17,18,20,8,25,55,46,57,19],forget:20,selinux:50,month:34,abil:[16,50],follow:[2,50,16,49,17,37,39,55,27],disk:[34,25],"__cmp__":13,init:43,program:[34,17,50],get_reply_queu:43,introduc:50,mpg:29,consum:[29,14,43,36,2,16,3,49,50,51,17,35,53,21,54,23,25,55,34,12,58],solem:[0,3,4,8,9,10,19,15,18,12,22,23,25,27,2,31,32,45,41,37,38,42,43,11,46,50,51,52,53,54,55,56,58],fals:[37,2,15,11,3,49,50,38,19,20,22,54,23,25,55,39,56,41,28,12,42],util:[13,14,45,11,32,4,52,51,35,7,21,22,19,9,38,12,49,58],mechan:[55,2,49],fall:[55,2,49],veri:[34,38,57,12,35],ticket:43,client_0_8:18,on_connection_reviv:23,list:[37,2,11,16,49,50,17,45,20,23,55,39,56,12],queuemanag:[30,24],emul:3,entity_nam:8,adjust:27,default_port:[47,1,54,3,31,18,41,8,6,40,28,42],small:[38,12],still_act:32,sync:[16,27],rate:[14,58,21],design:25,pass:[37,2,43,11,50,17,20,38,39,55,56],unknownconsumertag:42,deleg:50,sub:[16,20,34],clock:[50,14,27,21],abl:[57,50],overload:13,delet:[2,50,16,3,49,18,54,38,8,25,55,56,12],version:[16,48,33,19,50],"public":37,hasn:[37,55,39],full:[16,10],hash:[16,25],behaviour:50,shouldn:34,modifi:25,hipri:35,valu:[13,50,3,18,20,38,25,27,57,19],search:14,sender:[27,34,18],serializat:50,soldier:34,action:[38,50,25],amqplain:50,via:[16,20,50],primit:[16,35,25],transit:20,deprec:[56,50],famili:34,suddenli:50,establish:[50,18,20,22,54,23,56,42],select:[54,3,31,8,50],distinct:50,method_sig:18,regist:[2,11,49,17,45,55],two:[29,2,50,16,34,49,38,25,55,57],coverag:57,taken:[20,58,32],"_queue_bind":46,basi:17,forcefulli:50,more:[0,3,4,6,8,9,10,11,19,15,16,17,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,50,49,51,52,53,54,55,56,58],prefetch_s:[2,3,49,54,55,42],get_loglevel:44,desir:17,crosland:50,flag:[2,3,49,53,22,25],broke:50,sens:25,known:50,cach:[38,50],none:[3,8,10,19,44,18,12,23,25,46,29,2,31,32,41,37,38,39,42,43,11,50,49,52,53,54,55,56,34,58],midpri:35,aws_secret_access_kei:50,resolve_transport:10,histori:[14,50],remain:25,del:38,requeu:[2,31,3,49,33,41,54,55],delivery_tag:[54,3,31,8,41],def:[29,43,16,49,35,38,23,56],close_channel:[3,31],share:[20,46],dump_entri:29,accept:[55,2,49,23,50],cours:20,secur:16,rather:[2,50,3,49,55,57],anoth:34,reject:[54,3,31,33,41],scienc:25,simpl:[29,14,2,49,50,35,36,53,21,55,27],unabl:23,resourc:[37,50,51,18,20,56,57],librabbitmq:[16,14,54,50,21],associ:[20,50,45,18,25],"short":18,django:[50,30,14,16,5,21,24,40],caus:[17,18,50],callback:[29,2,43,32,16,3,49,50,35,37,22,54,23,25,55,39,56,38,12,42],doesnotexist:24,queue_delet:[54,3,8,6],help:[16,14,19,50],queue_opt:[53,56],image_queu:16,held:[55,2,49],through:34,reconnect:[54,18],undeliver:[37,2,39],brokerconnect:[29,43,31,50,16,3,35,20,23,56,57],paramet:[37,2,11,3,49,50,45,18,20,38,54,39,25,55,56,46,57,12],itervalu:19,serializerregistri:11,reprcal:[38,35],exchang:[3,6,8,12,14,16,17,20,21,23,25,46,29,2,35,41,37,39,42,43,50,34,49,53,54,55,56,57],epol:50,wouldn:34,good:17,"return":[43,2,31,11,3,49,50,35,17,38,54,23,45,25,39,46,34,19,58],timestamp:[29,27,58],detect_environ:[9,50],framework:[16,14],cet:50,userid:[20,56,54,18,50],restore_unack:[3,41],easili:[16,50],token:58,reactiv:[55,2,49],found:[16,25],unicod:[11,17,50],memoryerror:50,send_as_task:35,monoton:27,realli:16,expect:[34,58],handle_messag:43,orient:16,safeti:58,channel_max:54,publish:[30,31,2,16,3,50,34,17,35,37,21,54,39,25,55,53,56,57],payload:[29,30,31,50,16,3,35,54,24,48],"0x1041d93d0":24,print:[29,16,34,49,35,38,23,56,57],qualifi:10,advanc:[16,2,49,55],pub:[16,20,34],beanstalkc:47,reason:16,base:[11,31,14,3,50,21,46],put:[29,3,31,54,53],sent_at:[48,24],pyyaml:[11,50],add_queue_from_dict:50,thread:[57,58,23,50],delivery_info:[3,31,54],heartbeat:54,oserror:[54,18],simple_task_queu:50,number:[0,37,2,3,50,20,38,54,23,55,39,56,58],feet:57,when_bound:[22,25],done:[2,3,49,25,55,56],blank:25,stabl:50,miss:17,is_bound:22,differ:[29,50,49,35,20,23],guest:[29,50,16,35,20,54,57],least:25,handle_ev:41,statement:16,scheme:[16,17,25],store:[1,50,16,20,38,40,25,46],reject_log_error:[3,54],option:[37,2,43,11,16,49,50,17,20,23,25,55,39,56,12,53],auto_delet:[50,3,54,25,55,46],bytes_to_str:4,eventio:50,process_media:16,part:[20,3,50,17,25],pars:50,consult:[20,56,10],send_messag:50,whenev:50,remov:[29,31,50,3,54,25,19],serializernotinstal:11,str:[11,50],premoli:[6,50],packag:[16,11,55],imagin:34,built:[16,17,38,10,25,34],equival:[29,46],florian:50,self:[29,11,49,35,53,38,23,56],also:[2,50,16,49,17,20,23,25,55,56,27,34],build:16,maybechannelbound:22,pipelin:41,distribut:[16,27,50],previou:50,reach:38,priority_to_routing_kei:35,most:[16,56,58,25],news_exchang:[57,25],on_consume_readi:23,exc:[2,49,35,38,23,56],clear:[53,3,19],cover:25,clean:57,latest:[16,50],miron:50,multi_cal:43,keyprefix_queu:41,on_consumer_end:49,nasdaq:[16,25],session:[37,55,1,39],daisuk:50,sqla:50,fine:34,find:[55,2,49],clean_kombu_messag:[14,5,21],fxrang:38,copyright:[0,3,4,6,8,9,10,11,19,15,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,50,51,52,53,54,55,56,58],solut:16,couldn:56,queu:16,bernstein:50,unus:25,express:[17,50],resent:34,nativ:[16,20,17],mainten:50,fastest:34,get_queu:[43,8],restart:[34,25],bound_science_new:25,cyclic:50,stdchannelerror:[47,1,50,54,18,8,6,40,28,42],rfc:18,common:[14,50,16,35,21,25,57,12],set:[38,2,31,46,11,3,49,50,51,17,20,22,54,23,25,55,39,56,27,57],dump:38,sep:[38,41],get_limit:37,see:[0,3,4,6,8,9,10,11,19,13,15,16,18,12,20,22,23,25,27,28,2,31,32,33,45,41,37,38,39,42,43,47,46,50,34,49,51,52,53,54,55,56,57,58],arg:[13,30,32,54,3,4,35,18,44,37,22,8,19,24,40,55,23,38,41,12,42],close:[29,47,37,50,16,3,49,54,51,18,41,20,8,6,25,55,53,56,57,42],someth:[29,50],particip:16,won:[3,25],mutex:27,logwrap:52,on_poll_init:[54,18,41],httperror:28,altern:[2,49,17,20,25,55,56],signatur:[2,50,49,37,39,55],kostenko:50,mailbox:[43,21],lowercas:50,infam:4,distinguish:50,both:[16,29,50,12,25],consumermixin:[49,23,35,50],last:[56,50,58,19,25],delimit:25,boto:8,tokensin:58,event:[2,50,16,3,49,18,41,37,23,39,56,27],context:[29,43,50,18,20,38,23],whole:[55,2,49],load:20,simpli:16,point:3,instanti:[2,50,49,37,39,55,56],schedul:[3,51,21,14],header:[2,31,50,3,17,18,37,54,39,25,55,53,46,42],provok:18,shutdown:3,linux:50,backend:[55,46,15,50],becom:50,stamp:27,due:[31,18],empti:[50,25],yadda:57,modern:17,ensure_byt:4,imag:[16,17],great:34,coordin:34,demand:50,stolen:[58,25],"while":[29,43,2,16,49,50,38,23],duran:50,behavior:50,error:[29,47,31,50,16,3,4,35,6,44,54,8,23,18,25,56,28,42],fun:[13,43,51,35,38,23,56,12],anonym:50,loop:56,ordereddict:50,readi:[2,3,49,23,25,55],no_ack_consum:54,itself:[55,2,49,50],weakref:32,shorter:50,decod:[2,31,11,3,49,50,17,45,21,54,23,55],resourcenotfound:28,"__repr__":13,optim:34,syn:[14,50,9,21],user:[29,14,50,16,36,20,56],chang:[3,50,57,14],recent:[56,33,50],lower:50,task:[16,50,23,35,36],older:[19,50],entri:[29,58,50],pickl:[16,11,50,35,17],rajith:25,cest:50,mysql:50,poller:[54,18,41],andrii:50,shortcut:[29,56,50],sslerror:50,is_enabled_for:44,default_encod:4,dataerror:50,pyamqplib:20,auto_declar:[2,50,49,37,39,55],format:[20,8,50],bit:17,characterist:17,resolv:18,collect:3,api:[3,50,21,14],popular:16,deadletter_queu:[50,41],often:57,acknowledg:[0,2,31,50,3,49,53,54,23,25,56],some:[16,27,34,17,50],back:[34,31,3,18,54,57],per:[57,17,50],prop:[54,12],retri:[2,50,37,38,39,55,23,56,12],slash:50,undoc:5,kumria:50,run:[4,23,35,49,50],step:[38,23],pika2:42,binding_kei:54,constraint:17,class_id:18,delivery_mod:[2,50,37,39,25,55],block:[29,50,35,53,56,57],"__future__":[29,35],within:[55,2,49],ensur:[2,50,16,3,37,22,39,55,56,12],durabl:[16,3,54,25,55,56,46],errno:50,question:[14,33],fast:[16,17],custom:[50,16,36,17,25,57,12],no_loc:54,includ:[27,17,10,50],collect_repli:12,forward:[50,27,23,25],properli:[50,25],channellimitexceed:[0,56],translat:50,sdb:[8,50],line:56,connectionerror:54,info:[29,43,50,35,44,54,56],utf:11,connectionclos:42,consist:[16,25],minhe:50,parser:50,doesn:[33,8],repres:11,cure:25,guarante:3,amqp:[29,2,11,16,34,54,50,35,18,20,22,8,39,37,25,55,57,42],titl:57,my_pictur:17,codec:50,kombu:[0,1,2,3,4,6,7,8,9,10,11,19,13,14,15,16,17,18,12,20,21,22,23,24,25,26,27,28,29,30,31,32,35,45,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58],deseri:[29,11,31,3,17,54],from_transport_opt:41,mongodb:[14,50,16,6,20,21],get_transport_cl:[56,10],drag:57,ago:34,algorithm:[16,58,25],far:34,hello:[35,50],pluggabl:16,code:[58,57,18,50],queri:[20,8],brokerst:[3,15],legal:8,channelclos:42,simplequeu:[29,53,56,50],base64:[17,50],send:[29,2,43,11,16,34,49,50,17,18,36,20,25,55,27,57],body_encod:[50,41],aris:29,restore_at_shutdown:[3,41],movsisyan:50,passiv:[54,3,50,25],reprkwarg:38,account:50,cellular:57,recip:58,abcast:43,iterconsum:55,michael:50,after_reply_message_receiv:[54,15],ack_log_error:[3,54],"try":[0,2,43,50,49,35,38,23],race:50,maxsiz:19,"__copy__":50,pleas:[16,50],impli:25,smaller:[55,2,49,17],skvazh:50,video:[16,29],download:16,append:[3,41],compat:[14,50,16,17,21,55,19],index:[16,14],routes_for:8,access:[13,3,50,25],kombu_log_connect:50,experiment:50,beanstalkcexcept:47,fujiwara:50,timeouterror:0,iteritem:19,len:53,bodi:[43,2,31,11,16,3,49,50,35,18,45,37,54,23,25,55,39,42],let:[57,50],ioerror:[47,54,18],ensure_connect:[56,50],sinc:17,nb_keep_drain:[54,18],convert:[3,18,50],convers:46,larger:17,implement:[50,16,3,33,20,23,56,46,58],fxrangemax:38,chanc:[38,51,12],appli:[2,50,49,23,55,56],app:57,beanstalk:[14,47,16,50,20,21],"boolean":17,redi:[14,50,16,41,20,21,46,57],usd:[16,25],from:[3,4,8,19,16,18,20,25,27,29,2,31,32,35,50,34,49,51,53,54,55,56,57,58],login_method:[56,50],commun:34,upgrad:50,next:[38,50],"transient":[29,50,54,25,56,34],message_to_python:[3,50,18,42],rabbit:16,rare:50,shortstr:18,annoy:16,unacknowledg:[55,3,49,2],retriev:8,alia:[0,50,45,10,25],annot:44,annoi:50,tag:[50,3,41,25],restore_vis:41,fetch:[55,30],control:[55,2,49,50],process:[29,2,31,50,16,3,49,17,54,55,43,27,57],high:[16,34,35],carrot:[16,55,50],tarbal:16,connectionfailur:6,serial:[29,14,36,2,16,50,35,17,37,21,39,25,55,53,11,57],uuid4:[38,12],handle_cal:43,brian:50,memoiz:13,instead:[20,3,29,50],stock:[16,34,25],on_connection_error:23,reply_exchang:43,consistent_read:8,loglevel:[52,35,44],seriou:50,counter:[27,18,50],correspond:[3,46,50],issu:[16,57,18,50],allow:[16,50],ingress:57,move:[27,50],qsize:53,warren:16,clymer:28,willing:50,anyon:34,therefor:25,eur:[16,25],crash:[4,50],greater:27,python:[29,14,31,11,16,3,50,17,18,54,55,19,58],auto:[2,17,37,39,25,55,56,12],dan:50,dai:34,auth:50,morin:50,surviv:34,interval_max:[38,56],multiprocess:32,anyth:[57,50],msg_peek:50,queues2:49,queues1:49,mode:[50,34,25],on_iter:23,poolgroup:37,redeliv:[55,2,49],globe:34,channelpool:[56,50],our:[16,50,57,18,25],patch:[16,50],special:[16,11,57,25],out:[16,3,50,58,32],variabl:50,channel_id:[54,50,18,42],req:12,ret:50,suitabl:11,disappear:50,shut:18,insid:17,"_kombu":41,bound_sicence_new:25,kilobyt:50,undo:[55,2,49],dictionari:[11,17,19],releas:[37,50,36,20,21,55,56,57],reset_aft:37,unwant:50,could:[34,50],ask:[0,3,4,8,9,10,19,14,15,18,12,22,23,25,27,2,31,32,33,45,41,37,38,42,43,11,46,50,49,51,52,53,54,55,56,58],keep:50,connectionlimitexceed:[0,56,57],channel_error:[47,1,50,54,31,18,8,23,6,40,56,28,42],issue10272:50,reply_cod:18,south:50,cristian:50,softwar:[16,27],christoph:50,exchange_declar:[3,54],qualiti:[55,3,49,2,21],oldpika:50,basic_get:[54,3,50,42],ziegler:[47,50],mai:[2,34,49,17,18,20,25,55,56,57,58],retry_over_tim:38,prioriti:[2,3,35,18,41,37,54,39,25,55,42],token_bucket:58,start:[50,16,41,38,25,56,57],unknown:50,licens:[0,3,4,6,8,9,10,11,19,14,15,16,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,51,52,53,54,55,56,58],expected_tim:58,capac:58,messag:[0,1,3,8,12,14,16,17,18,20,21,23,24,25,27,29,2,31,33,34,36,35,37,39,40,41,42,43,11,46,50,48,49,53,54,55,56,57],stephan:50,monkei:50,pavel:50,"final":[43,14,50,21,32],get_nowait:53,"__del__":50,shallow:19,message_data:[3,18],basic_cancel:[50,3,8,18,41,54],structur:[3,31,54,17,11],charact:[16,11,46,50,25],itermessag:12,bind:[2,16,3,49,6,41,22,8,25,55,46],steev:50,deliveri:[50,34,25],kwdict:[38,35],terribl:50,py2:50,have:[29,2,50,16,34,49,17,20,38,23,37,25,55,39,56,57,12],disadvantag:17,need:[29,2,50,16,34,49,17,20,23,37,55,39,56,46,57],predic:51,rout:[29,2,50,16,3,20,8,39,37,25,55,56,46],mid:35,mix:49,get_tabl:[46,3,8,6,41],which:[29,2,50,34,49,17,18,20,23,25,55,57,19],zlib:57,singl:[29,2,50,49,38,25,56,46,34],unless:11,who:35,deploi:34,rkei:[46,17],why:34,url:[14,50,36,7,20,21,56],request:[2,11,49,18,55,56,34],determin:25,fact:57,text:[16,4,44,18,45],sent:[2,31,50,16,3,49,17,54,25,55,34],raw_encod:11,anywai:34,setter:38,locat:50,forev:[38,57,56,50],should:[11,50,16,49,2,23,55,57,58],extra_context:23,local:[55,2,49,25],contribut:[16,14,50],beat:43,familiar:16,pypi:[16,55,50],maybe_conn_error:23,increas:[38,50],enabl:[2,50,16,3,49,37,39,55,53,56],directexchang:[3,46],contain:[50,3,11,25],get_decod:45,frame_max:54,allowed_method:18,basic_reject:[3,54],nitzan:50,lyon:50,correctli:[18,50],pattern:[16,8,34,25],written:[16,34],nofreechannel:42,email:34,nowait:[54,3,42,25],kei:[29,2,50,16,3,37,39,25,55,56,46,19],barrett:50,mongod:50,equal:[55,2,49,51,19],etc:[16,17],instanc:[38,2,31,50,3,49,17,52,22,23,25,55,56,57,12],default_channel:[49,50],iterqueu:55,repeatlast:38,"0x103b5f550":3,on_special_messag:49,"_librabbitmq":54,solv:50,on_decode_error:[55,2,49,23,50],respect:[57,50],compon:50,operationfailur:6,json:[29,2,11,16,50,17,37,39,57],autoretri:50,treat:25,"0rc2":16,immedi:[2,37,54,39,25,55,56,42],ghettoq:50,lopri:35,decim:17,queue_nam:[29,30],bye:35,process_next:55,plain:17,harder:20,defin:[29,16,3,18,22,23,25,46,34,12],create_channel:[3,31,54,18,42],eintr:50,layer:16,avi:16,apply_glob:[55,3,49,2],incom:27,reviv:[2,50,49,37,22,39,55],welcom:16,parti:34,cross:17,member:5,handl:[43,2,50,16,49,18],http:[16,55,58,28,50],hostnam:[29,43,50,18,20,54,56],max_item:8,logfil:44,fromkei:19,keyboardinterrupt:35,thought:27,exampl:[29,14,43,11,16,34,50,35,36,20,38,23,25,56,46,57],command:[43,12,50],choos:20,queue_purg:[3,54,42],usual:[43,3,56,50,11],"0x101805650":57,detail:[0,3,4,6,8,9,10,11,19,15,16,18,12,22,23,25,27,28,2,31,32,45,41,37,38,42,43,47,46,51,52,53,54,55,56,58],a_glob:42,percoco:[6,50],simultan:0,unacked_index:41,add:[16,50],valid:20,is_al:18,bool:25,logger:[29,50,3,44,52,54],match:[16,46,50,18,25],gmt:50,jython:50,include_password:50,know:57,password:[20,56,54,18,50],recurs:17,get_item:8,insert:19,like:[29,16,57,17,25,34],lost:[2,50,37,39,25,55,23],basic_recov:3,necessari:[34,50],if_unusu:3,lose:34,async:[43,14,50,16,21,9],page:14,exceed:[0,38,56,50],didn:[34,50],select_for_upd:30,gevent:[23,50],with_stat:[29,35],home:34,log_queu:29,librari:[29,50,17,25],tmp:16,lead:50,leak:50,avoid:[55,2,49,50],octet:[55,2,49],leav:[50,25],postencod:31,preload:56,encourag:[16,20],slight:17,usag:[56,27,50],vhost:8,host:[20,56,54,50],my_callback:16,although:[55,2,49,25],basic_qo:[3,54,42],about:[16,57,25],actual:34,socket:[29,47,50,54,18,8,56,28,42],constructor:[43,3,56],discard:[3,31,54,18],anyjson:50,disabl:[2,50,16,3,49,20,39,55,53,56,57],topicexchang:[3,46],own:[31,50,20,25,27,57],easy_instal:16,automat:[2,50,16,49,37,39,25,55,56],ionel:50,list_bind:54,transfer:[34,17],myqueu:29,safe_repr:4,adher:3,"function":[13,14,50,57,45,21,38,23,10,25,56,28,12],simplejson:17,subscrib:[55,2,49,34],keyerror:50,gain:17,sphinx:16,overflow:[55,2,49],bug:[16,14,50],count:3,dispatch_method:18,whether:[20,22,25],record:34,limit:[0,14,43,2,3,49,50,17,37,21,23,55,56,57,12,58],indefinit:50,virtual_host:[20,56,54,50],basic_consum:[54,3,18,41,8,40,42],otherwis:[55,2,49,25],problem:[16,50],socketerror:47,evalu:13,"int":50,dure:[37,55,39],filenam:29,on_rev:[56,12,50],replica:50,contextlib:29,pip:16,probabl:17,bzip2:35,brokertransport:50,virtual:[14,15,50,16,3,51,20,21,56,46],other:[2,49,17,18,20,55,27,34,19],lookup:[46,50],get_encod:45,rememb:[16,56,19],mpromis:13,fulli:[10,50],june:[21,36],stai:[16,50],messagemanag:[30,24],experienc:50,open_fil:38,reliabl:[16,34,36],rule:[27,18],view_creat:28,cookbook:58},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","kombu.transport.sqlalchemy","kombu.messaging","kombu.transport.virtual","String Encoding - kombu.utils.encoding","Django Management - clean_kombu_messages","kombu.transport.mongodb","kombu.utils.url","kombu.transport.SQS","Async Utilities - kombu.syn","kombu.transport","kombu.serialization","Common Utilities - kombu.common","kombu.utils.functional","Kombu Documentation","kombu.transport.memory","kombu - Messaging Framework for Python","Serialization","kombu.transport.amqplib","Compat. utilities - kombu.utils.compat","Connections and transports","API Reference","kombu.compression","Mixin Classes - kombu.mixins","Django Models - kombu.transport.django.models","kombu.entity","kombu.transport.pika","Clocks and Synchronization - kombu.clocks","kombu.transport.couchdb","Simple Interface","Django Managers - kombu.transport.django.managers","kombu.transport.base","Finalize - kombu.utils.finalize","Frequently Asked Questions","Introduction","Examples","User Guide","General Pools - kombu.pools","Utilities - kombu.utils","Producers","kombu.transport.django","kombu.transport.redis","kombu.transport.pika","kombu.pidbox","Logging - kombu.log","kombu.compression","kombu.transport.virtual.exchange","kombu.transport.beanstalk","Models","Consumers","Change history","kombu.transport.virtual.scheduling","Debugging - kombu.utils.debug","kombu.simple","kombu.transport.librabbitmq","kombu.compat","kombu.connection","Connection and Producer Pools","Rate limiting - kombu.utils.limits"],objnames:{"0":["py","module","Python module"],"1":["py","method","Python method"],"2":["py","attribute","Python attribute"],"3":["py","data","Python data"],"4":["py","function","Python function"],"5":["py","class","Python class"],"6":["py","exception","Python exception"],"7":["py","classmethod","Python class method"]},filenames:["reference/kombu.exceptions","reference/kombu.transport.sqlalchemy","reference/kombu.messaging","reference/kombu.transport.virtual","reference/kombu.utils.encoding","reference/kombu.transport.django.management.commands.clean_kombu_messages","reference/kombu.transport.mongodb","reference/kombu.utils.url","reference/kombu.transport.SQS","reference/kombu.syn","reference/kombu.transport","reference/kombu.serialization","reference/kombu.common","reference/kombu.utils.functional","index","reference/kombu.transport.memory","introduction","userguide/serialization","reference/kombu.transport.amqplib","reference/kombu.utils.compat","userguide/connections","reference/index","reference/kombu.abstract","reference/kombu.mixins","reference/kombu.transport.django.models","reference/kombu.entity","reference/kombu.transport.pika","reference/kombu.clocks","reference/kombu.transport.couchdb","userguide/simple","reference/kombu.transport.django.managers","reference/kombu.transport.base","reference/kombu.utils.finalize","faq","userguide/introduction","userguide/examples","userguide/index","reference/kombu.pools","reference/kombu.utils","userguide/producers","reference/kombu.transport.django","reference/kombu.transport.redis","reference/kombu.transport.pika2","reference/kombu.pidbox","reference/kombu.log","reference/kombu.compression","reference/kombu.transport.virtual.exchange","reference/kombu.transport.beanstalk","reference/kombu.transport.sqlalchemy.models","userguide/consumers","changelog","reference/kombu.transport.virtual.scheduling","reference/kombu.utils.debug","reference/kombu.simple","reference/kombu.transport.librabbitmq","reference/kombu.compat","reference/kombu.connection","userguide/pools","reference/kombu.utils.limits"]}) \ No newline at end of file
diff --git a/userguide/connections.html b/userguide/connections.html
index 03c2d3d3..22491474 100644
--- a/userguide/connections.html
+++ b/userguide/connections.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Connections and transports &mdash; Kombu 2.1.3 documentation</title>
+ <title>Connections and transports &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="User Guide" href="index.html" />
<link rel="next" title="Producers" href="producers.html" />
<link rel="prev" title="Introduction" href="introduction.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="introduction.html" title="Introduction"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -326,13 +326,13 @@ Can be disabled by setting the <tt class="docutils literal"><span class="pre">su
<li class="right" >
<a href="introduction.html" title="Introduction"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/userguide/consumers.html b/userguide/consumers.html
index dd298d5f..a18bef4d 100644
--- a/userguide/consumers.html
+++ b/userguide/consumers.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Consumers &mdash; Kombu 2.1.3 documentation</title>
+ <title>Consumers &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="User Guide" href="index.html" />
<link rel="next" title="Examples" href="examples.html" />
<link rel="prev" title="Producers" href="producers.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="producers.html" title="Producers"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -69,13 +69,14 @@ drain events from all channels on that connection.</p>
</pre></div>
</div>
<p>Draining events from several consumers:</p>
-<div class="highlight-python"><pre>from kombu.utils import nested
+<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">kombu.utils</span> <span class="kn">import</span> <span class="n">nested</span>
-with connection.channel(), connection.channel() as (channel1, channel2):
- consumers = [Consumer(channel1, queues1),
- Consumer(channel2, queues2)]
- with nested(\*consumers):
- connection.drain_events(timeout=1)</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="n">connection</span><span class="o">.</span><span class="n">channel</span><span class="p">()</span> <span class="k">as</span> <span class="p">(</span><span class="n">channel1</span><span class="p">,</span> <span class="n">channel2</span><span class="p">):</span>
+ <span class="n">consumers</span> <span class="o">=</span> <span class="p">[</span><span class="n">Consumer</span><span class="p">(</span><span class="n">channel1</span><span class="p">,</span> <span class="n">queues1</span><span class="p">),</span>
+ <span class="n">Consumer</span><span class="p">(</span><span class="n">channel2</span><span class="p">,</span> <span class="n">queues2</span><span class="p">)]</span>
+ <span class="k">with</span> <span class="n">nested</span><span class="p">(</span>\<span class="o">*</span><span class="n">consumers</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="n">timeout</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
+</pre></div>
</div>
<p>Or using <a class="reference internal" href="../reference/kombu.mixins.html#kombu.mixins.ConsumerMixin" title="kombu.mixins.ConsumerMixin"><tt class="xref py py-class docutils literal"><span class="pre">ConsumerMixin</span></tt></a>:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">kombu.mixins</span> <span class="kn">import</span> <span class="n">ConsumerMixin</span>
@@ -398,13 +399,13 @@ and the <cite>Message</cite> instance (a subclass of
<li class="right" >
<a href="producers.html" title="Producers"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/userguide/examples.html b/userguide/examples.html
index 4285e40b..ec01a96f 100644
--- a/userguide/examples.html
+++ b/userguide/examples.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Examples &mdash; Kombu 2.1.3 documentation</title>
+ <title>Examples &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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="Consumers" href="consumers.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="consumers.html" title="Consumers"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -213,13 +213,13 @@ for priorities using different queues.</p>
<li class="right" >
<a href="consumers.html" title="Consumers"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/userguide/index.html b/userguide/index.html
index 42cfdf08..48398996 100644
--- a/userguide/index.html
+++ b/userguide/index.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>User Guide &mdash; Kombu 2.1.3 documentation</title>
+ <title>User Guide &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="next" title="Introduction" href="introduction.html" />
<link rel="prev" title="kombu - Messaging Framework for Python" href="../introduction.html" />
</head>
@@ -44,7 +44,7 @@
<li class="right" >
<a href="../introduction.html" title="kombu - Messaging Framework for Python"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
@@ -59,9 +59,9 @@
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
-<tr class="field-odd field"><th class="field-name">Release:</th><td class="field-body">2.1</td>
+<tr class="field-odd field"><th class="field-name">Release:</th><td class="field-body">2.2</td>
</tr>
-<tr class="field-even field"><th class="field-name">Date:</th><td class="field-body">April 03, 2012</td>
+<tr class="field-even field"><th class="field-name">Date:</th><td class="field-body">June 06, 2012</td>
</tr>
</tbody>
</table>
@@ -165,12 +165,12 @@
<li class="right" >
<a href="../introduction.html" title="kombu - Messaging Framework for Python"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/userguide/introduction.html b/userguide/introduction.html
index 3fcdcef7..d7ccc62d 100644
--- a/userguide/introduction.html
+++ b/userguide/introduction.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Introduction &mdash; Kombu 2.1.3 documentation</title>
+ <title>Introduction &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="User Guide" href="index.html" />
<link rel="next" title="Connections and transports" href="connections.html" />
<link rel="prev" title="User Guide" href="index.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="index.html" title="User Guide"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -199,13 +199,13 @@ applications this is a necessary cost.</p>
<li class="right" >
<a href="index.html" title="User Guide"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/userguide/pools.html b/userguide/pools.html
index 5d08db7e..7145ecc1 100644
--- a/userguide/pools.html
+++ b/userguide/pools.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Connection and Producer Pools &mdash; Kombu 2.1.3 documentation</title>
+ <title>Connection and Producer Pools &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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="Simple Interface" href="simple.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="simple.html" title="Simple Interface"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -107,15 +107,16 @@ exception will be raised.</p>
</div>
<p>That&#8217;s about it. If you need to connect to multiple brokers
at once you can do that too:</p>
-<div class="highlight-python"><pre>from kombu import BrokerConnection
-from kombu.pools import connections
+<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="kn">from</span> <span class="nn">kombu.pools</span> <span class="kn">import</span> <span class="n">connections</span>
-c1 = BrokerConnection("amqp://")
-c2 = BrokerConnection("redis://")
+<span class="n">c1</span> <span class="o">=</span> <span class="n">BrokerConnection</span><span class="p">(</span><span class="s">&quot;amqp://&quot;</span><span class="p">)</span>
+<span class="n">c2</span> <span class="o">=</span> <span class="n">BrokerConnection</span><span class="p">(</span><span class="s">&quot;redis://&quot;</span><span class="p">)</span>
-with connections[c1].acquire(block=True) as conn1:
- with connections[c2].acquire(block=True) as conn2:
- # ....</pre>
+<span class="k">with</span> <span class="n">connections</span><span class="p">[</span><span class="n">c1</span><span class="p">]</span><span class="o">.</span><span class="n">acquire</span><span class="p">(</span><span class="n">block</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span> <span class="k">as</span> <span class="n">conn1</span><span class="p">:</span>
+ <span class="k">with</span> <span class="n">connections</span><span class="p">[</span><span class="n">c2</span><span class="p">]</span><span class="o">.</span><span class="n">acquire</span><span class="p">(</span><span class="n">block</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span> <span class="k">as</span> <span class="n">conn2</span><span class="p">:</span>
+ <span class="c"># ....</span>
+</pre></div>
</div>
</div>
</div>
@@ -177,16 +178,17 @@ so that forked processes start with clean pool groups.</p>
<p>To maintain your own pool groups you should create your own
<tt class="xref py py-class docutils literal"><span class="pre">Connections</span></tt> and <tt class="xref py py-class docutils literal"><span class="pre">kombu.pools.Producers</span></tt>
instances:</p>
-<div class="highlight-python"><pre>from kombu import pools
-from kombu import BrokerConnection
+<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">pools</span>
+<span class="kn">from</span> <span class="nn">kombu</span> <span class="kn">import</span> <span class="n">BrokerConnection</span>
-connections = pools.Connection(limit=100)
-producers = pools.Producers(limit=connections.limit)
+<span class="n">connections</span> <span class="o">=</span> <span class="n">pools</span><span class="o">.</span><span class="n">Connection</span><span class="p">(</span><span class="n">limit</span><span class="o">=</span><span class="mi">100</span><span class="p">)</span>
+<span class="n">producers</span> <span class="o">=</span> <span class="n">pools</span><span class="o">.</span><span class="n">Producers</span><span class="p">(</span><span class="n">limit</span><span class="o">=</span><span class="n">connections</span><span class="o">.</span><span class="n">limit</span><span class="p">)</span>
-connection = BrokerConnection("amqp://guest:guest@localhost:5672//")
+<span class="n">connection</span> <span class="o">=</span> <span class="n">BrokerConnection</span><span class="p">(</span><span class="s">&quot;amqp://guest:guest@localhost:5672//&quot;</span><span class="p">)</span>
-with connections[connection].acquire(block=True):
- # ...</pre>
+<span class="k">with</span> <span class="n">connections</span><span class="p">[</span><span class="n">connection</span><span class="p">]</span><span class="o">.</span><span class="n">acquire</span><span class="p">(</span><span class="n">block</span><span class="o">=</span><span class="bp">True</span><span class="p">):</span>
+ <span class="c"># ...</span>
+</pre></div>
</div>
<p>If you want to use the global limit that can be set with
<a class="reference internal" href="../reference/kombu.pools.html#kombu.pools.set_limit" title="kombu.pools.set_limit"><tt class="xref py py-func docutils literal"><span class="pre">set_limit()</span></tt></a> you can use a special value as the <tt class="docutils literal"><span class="pre">limit</span></tt>
@@ -267,13 +269,13 @@ argument:</p>
<li class="right" >
<a href="simple.html" title="Simple Interface"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/userguide/producers.html b/userguide/producers.html
index 0cee9115..0a6539d7 100644
--- a/userguide/producers.html
+++ b/userguide/producers.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Producers &mdash; Kombu 2.1.3 documentation</title>
+ <title>Producers &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="User Guide" href="index.html" />
<link rel="next" title="Consumers" href="consumers.html" />
<link rel="prev" title="Connections and transports" href="connections.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="connections.html" title="Connections and transports"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -256,13 +256,13 @@ supported by <tt class="xref py py-meth docutils literal"><span class="pre">ensu
<li class="right" >
<a href="connections.html" title="Connections and transports"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/userguide/serialization.html b/userguide/serialization.html
index 2baf4b31..1c3f1cd0 100644
--- a/userguide/serialization.html
+++ b/userguide/serialization.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Serialization &mdash; Kombu 2.1.3 documentation</title>
+ <title>Serialization &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 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="Connection and Producer Pools" href="pools.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="pools.html" title="Connection and Producer Pools"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -197,13 +197,13 @@ for the raw data:</p>
<li class="right" >
<a href="pools.html" title="Connection and Producer Pools"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file
diff --git a/userguide/simple.html b/userguide/simple.html
index 66eae0e5..3fead508 100644
--- a/userguide/simple.html
+++ b/userguide/simple.html
@@ -7,7 +7,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Simple Interface &mdash; Kombu 2.1.3 documentation</title>
+ <title>Simple Interface &mdash; Kombu 2.2.0rc2 documentation</title>
<link rel="stylesheet" href="../_static/celery.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
- VERSION: '2.1.3',
+ VERSION: '2.2.0rc2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,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 2.1.3 documentation" href="../index.html" />
+ <link rel="top" title="Kombu 2.2.0rc2 documentation" href="../index.html" />
<link rel="up" title="User Guide" href="index.html" />
<link rel="next" title="Connection and Producer Pools" href="pools.html" />
<link rel="prev" title="Examples" href="examples.html" />
@@ -45,7 +45,7 @@
<li class="right" >
<a href="examples.html" title="Examples"
accesskey="P">previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" accesskey="U">User Guide</a> &raquo;</li>
</ul>
</div>
@@ -220,13 +220,13 @@ to produce and consume logging messages:</p>
<li class="right" >
<a href="examples.html" title="Examples"
>previous</a> |</li>
- <li><a href="../index.html">Kombu 2.1.3 documentation</a> &raquo;</li>
+ <li><a href="../index.html">Kombu 2.2.0rc2 documentation</a> &raquo;</li>
<li><a href="index.html" >User Guide</a> &raquo;</li>
</ul>
</div>
<div class="footer">
&copy; Copyright 2009-2012, Ask Solem.
- Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.2.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> \ No newline at end of file