celery.backends.html 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>Backends - celery.backends &mdash; Celery v0.7.0 (unstable) documentation</title>
  7. <link rel="stylesheet" href="../static/nature.css" type="text/css" />
  8. <link rel="stylesheet" href="../static/pygments.css" type="text/css" />
  9. <script type="text/javascript">
  10. var DOCUMENTATION_OPTIONS = {
  11. URL_ROOT: '../',
  12. VERSION: '0.7.0 (unstable)',
  13. COLLAPSE_MODINDEX: false,
  14. FILE_SUFFIX: '.html',
  15. HAS_SOURCE: true
  16. };
  17. </script>
  18. <script type="text/javascript" src="../static/jquery.js"></script>
  19. <script type="text/javascript" src="../static/doctools.js"></script>
  20. <link rel="top" title="Celery v0.7.0 (unstable) documentation" href="../index.html" />
  21. <link rel="up" title="Module API Reference" href="index.html" />
  22. <link rel="next" title="Backend: Base - celery.backends.base" href="celery.backends.base.html" />
  23. <link rel="prev" title="Process Supervisor - celery.supervisor" href="celery.supervisor.html" />
  24. </head>
  25. <body>
  26. <div class="related">
  27. <h3>Navigation</h3>
  28. <ul>
  29. <li class="right" style="margin-right: 10px">
  30. <a href="../genindex.html" title="General Index"
  31. accesskey="I">index</a></li>
  32. <li class="right" >
  33. <a href="../modindex.html" title="Global Module Index"
  34. accesskey="M">modules</a> |</li>
  35. <li class="right" >
  36. <a href="celery.backends.base.html" title="Backend: Base - celery.backends.base"
  37. accesskey="N">next</a> |</li>
  38. <li class="right" >
  39. <a href="celery.supervisor.html" title="Process Supervisor - celery.supervisor"
  40. accesskey="P">previous</a> |</li>
  41. <li><a href="../index.html">Celery v0.7.0 (unstable) documentation</a> &raquo;</li>
  42. <li><a href="index.html" accesskey="U">Module API Reference</a> &raquo;</li>
  43. </ul>
  44. </div>
  45. <div class="document">
  46. <div class="documentwrapper">
  47. <div class="bodywrapper">
  48. <div class="body">
  49. <div class="section" id="module-celery.backends">
  50. <h1>Backends - celery.backends<a class="headerlink" href="#module-celery.backends" title="Permalink to this headline">¶</a></h1>
  51. <p>celery.backends</p>
  52. <dl class="function">
  53. <dt id="celery.backends.get_backend_cls">
  54. <tt class="descclassname">celery.backends.</tt><tt class="descname">get_backend_cls</tt><big>(</big><em>backend</em><big>)</big><a class="headerlink" href="#celery.backends.get_backend_cls" title="Permalink to this definition">¶</a></dt>
  55. <dd><p>Get backend class by name.</p>
  56. <p>If the name does not include &#8220;<tt class="docutils literal"><span class="pre">.</span></tt>&#8221; (is not fully qualified),
  57. <tt class="docutils literal"><span class="pre">&quot;celery.backends.&quot;</span></tt> will be prepended to the name. e.g.
  58. <tt class="docutils literal"><span class="pre">&quot;database&quot;</span></tt> becomes <tt class="docutils literal"><span class="pre">&quot;celery.backends.database&quot;</span></tt>.</p>
  59. </dd></dl>
  60. <dl class="data">
  61. <dt id="celery.backends.get_default_backend_cls">
  62. <tt class="descclassname">celery.backends.</tt><tt class="descname">get_default_backend_cls</tt><a class="headerlink" href="#celery.backends.get_default_backend_cls" title="Permalink to this definition">¶</a></dt>
  63. <dd><dl class="function">
  64. <dt id="celery.backends.get_default_periodicstatus_backend_cls">
  65. <tt class="descclassname">celery.backends.</tt><tt class="descname">get_default_periodicstatus_backend_cls</tt><big>(</big><big>)</big><a class="headerlink" href="#celery.backends.get_default_periodicstatus_backend_cls" title="Permalink to this definition">¶</a></dt>
  66. <dd>Get the backend class specified in
  67. <tt class="xref docutils literal"><span class="pre">CELERY_PERIODIC_STATUS_BACKEND</span></tt>.</dd></dl>
  68. </dd></dl>
  69. <dl class="data">
  70. <dt>
  71. <tt class="descclassname">celery.backends.</tt><tt class="descname">get_default_periodicstatus_backend_cls</tt></dt>
  72. <dd><dl class="class">
  73. <dt id="celery.backends.DefaultBackend">
  74. <em class="property">
  75. class </em><tt class="descclassname">celery.backends.</tt><tt class="descname">DefaultBackend</tt><a class="headerlink" href="#celery.backends.DefaultBackend" title="Permalink to this definition">¶</a></dt>
  76. <dd>The default backend class used for storing task results and status,
  77. specified in <tt class="xref docutils literal"><span class="pre">CELERY_BACKEND</span></tt>.</dd></dl>
  78. </dd></dl>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. <div class="sphinxsidebar">
  84. <div class="sphinxsidebarwrapper">
  85. <h4>Previous topic</h4>
  86. <p class="topless"><a href="celery.supervisor.html"
  87. title="previous chapter">Process Supervisor - celery.supervisor</a></p>
  88. <h4>Next topic</h4>
  89. <p class="topless"><a href="celery.backends.base.html"
  90. title="next chapter">Backend: Base - celery.backends.base</a></p>
  91. <h3>This Page</h3>
  92. <ul class="this-page-menu">
  93. <li><a href="../sources/reference/celery.backends.txt"
  94. rel="nofollow">Show Source</a></li>
  95. </ul>
  96. <div id="searchbox" style="display: none">
  97. <h3>Quick search</h3>
  98. <form class="search" action="../search.html" method="get">
  99. <input type="text" name="q" size="18" />
  100. <input type="submit" value="Go" />
  101. <input type="hidden" name="check_keywords" value="yes" />
  102. <input type="hidden" name="area" value="default" />
  103. </form>
  104. <p class="searchtip" style="font-size: 90%">
  105. Enter search terms or a module, class or function name.
  106. </p>
  107. </div>
  108. <script type="text/javascript">$('#searchbox').show(0);</script>
  109. </div>
  110. </div>
  111. <div class="clearer"></div>
  112. </div>
  113. <div class="related">
  114. <h3>Navigation</h3>
  115. <ul>
  116. <li class="right" style="margin-right: 10px">
  117. <a href="../genindex.html" title="General Index"
  118. >index</a></li>
  119. <li class="right" >
  120. <a href="../modindex.html" title="Global Module Index"
  121. >modules</a> |</li>
  122. <li class="right" >
  123. <a href="celery.backends.base.html" title="Backend: Base - celery.backends.base"
  124. >next</a> |</li>
  125. <li class="right" >
  126. <a href="celery.supervisor.html" title="Process Supervisor - celery.supervisor"
  127. >previous</a> |</li>
  128. <li><a href="../index.html">Celery v0.7.0 (unstable) documentation</a> &raquo;</li>
  129. <li><a href="index.html" >Module API Reference</a> &raquo;</li>
  130. </ul>
  131. </div>
  132. <div class="footer">
  133. &copy; Copyright 2009, Ask Solem.
  134. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2.
  135. </div>
  136. </body>
  137. </html>