diff options
Diffstat (limited to 'jobmanager.html')
| -rw-r--r-- | jobmanager.html | 152 |
1 files changed, 152 insertions, 0 deletions
diff --git a/jobmanager.html b/jobmanager.html new file mode 100644 index 0000000..d430f67 --- /dev/null +++ b/jobmanager.html | |||
| @@ -0,0 +1,152 @@ | |||
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
| 2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
| 3 | |||
| 4 | |||
| 5 | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| 6 | <head> | ||
| 7 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
| 8 | |||
| 9 | <title>jobmanager – Job Manager — EventMQ 0 documentation</title> | ||
| 10 | |||
| 11 | <link rel="stylesheet" href="_static/classic.css" type="text/css" /> | ||
| 12 | <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||
| 13 | |||
| 14 | <script type="text/javascript"> | ||
| 15 | var DOCUMENTATION_OPTIONS = { | ||
| 16 | URL_ROOT: './', | ||
| 17 | VERSION: '0', | ||
| 18 | COLLAPSE_INDEX: false, | ||
| 19 | FILE_SUFFIX: '.html', | ||
| 20 | HAS_SOURCE: true | ||
| 21 | }; | ||
| 22 | </script> | ||
| 23 | <script type="text/javascript" src="_static/jquery.js"></script> | ||
| 24 | <script type="text/javascript" src="_static/underscore.js"></script> | ||
| 25 | <script type="text/javascript" src="_static/doctools.js"></script> | ||
| 26 | <link rel="top" title="EventMQ 0 documentation" href="index.html" /> | ||
| 27 | <link rel="next" title="receiver – Receiver" href="receiver.html" /> | ||
| 28 | <link rel="prev" title="Welcome to EventMQ’s documentation!" href="index.html" /> | ||
| 29 | </head> | ||
| 30 | <body role="document"> | ||
| 31 | <div class="related" role="navigation" aria-label="related navigation"> | ||
| 32 | <h3>Navigation</h3> | ||
| 33 | <ul> | ||
| 34 | <li class="right" style="margin-right: 10px"> | ||
| 35 | <a href="genindex.html" title="General Index" | ||
| 36 | accesskey="I">index</a></li> | ||
| 37 | <li class="right" > | ||
| 38 | <a href="py-modindex.html" title="Python Module Index" | ||
| 39 | >modules</a> |</li> | ||
| 40 | <li class="right" > | ||
| 41 | <a href="receiver.html" title="receiver – Receiver" | ||
| 42 | accesskey="N">next</a> |</li> | ||
| 43 | <li class="right" > | ||
| 44 | <a href="index.html" title="Welcome to EventMQ’s documentation!" | ||
| 45 | accesskey="P">previous</a> |</li> | ||
| 46 | <li class="nav-item nav-item-0"><a href="index.html">EventMQ 0 documentation</a> »</li> | ||
| 47 | </ul> | ||
| 48 | </div> | ||
| 49 | |||
| 50 | <div class="document"> | ||
| 51 | <div class="documentwrapper"> | ||
| 52 | <div class="bodywrapper"> | ||
| 53 | <div class="body" role="main"> | ||
| 54 | |||
| 55 | <span class="target" id="module-eventmq.jobmanager"></span><div class="section" id="jobmanager-job-manager"> | ||
| 56 | <h1><code class="xref py py-mod docutils literal"><span class="pre">jobmanager</span></code> – Job Manager<a class="headerlink" href="#jobmanager-job-manager" title="Permalink to this headline">¶</a></h1> | ||
| 57 | <p>Ensures things about jobs | ||
| 58 | Spawns and manages workers</p> | ||
| 59 | <dl class="class"> | ||
| 60 | <dt id="eventmq.jobmanager.JobManager"> | ||
| 61 | <em class="property">class </em><code class="descclassname">eventmq.jobmanager.</code><code class="descname">JobManager</code><span class="sig-paren">(</span><em>*args</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="headerlink" href="#eventmq.jobmanager.JobManager" title="Permalink to this definition">¶</a></dt> | ||
| 62 | <dd><p>The exposed portion of the worker. The job manager’s main responsibility is | ||
| 63 | to manage the resources on the server it’s running.</p> | ||
| 64 | <p>This job manager uses tornado’s eventloop.</p> | ||
| 65 | <dl class="method"> | ||
| 66 | <dt id="eventmq.jobmanager.JobManager.__init__"> | ||
| 67 | <code class="descname">__init__</code><span class="sig-paren">(</span><em>*args</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="headerlink" href="#eventmq.jobmanager.JobManager.__init__" title="Permalink to this definition">¶</a></dt> | ||
| 68 | <dd><div class="admonition note"> | ||
| 69 | <p class="first admonition-title">Note</p> | ||
| 70 | <p class="last">All args are optional unless otherwise noted.</p> | ||
| 71 | </div> | ||
| 72 | <table class="docutils field-list" frame="void" rules="none"> | ||
| 73 | <col class="field-name" /> | ||
| 74 | <col class="field-body" /> | ||
| 75 | <tbody valign="top"> | ||
| 76 | <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>name</strong> (<a class="reference external" href="https://docs.python.org/library/functions.html#str" title="(in Python v2.7)"><em>str</em></a>) – unique name of this instance. By default a uuid will be | ||
| 77 | generated.</td> | ||
| 78 | </tr> | ||
| 79 | </tbody> | ||
| 80 | </table> | ||
| 81 | </dd></dl> | ||
| 82 | |||
| 83 | <dl class="attribute"> | ||
| 84 | <dt id="eventmq.jobmanager.JobManager.__weakref__"> | ||
| 85 | <code class="descname">__weakref__</code><a class="headerlink" href="#eventmq.jobmanager.JobManager.__weakref__" title="Permalink to this definition">¶</a></dt> | ||
| 86 | <dd><p>list of weak references to the object (if defined)</p> | ||
| 87 | </dd></dl> | ||
| 88 | |||
| 89 | </dd></dl> | ||
| 90 | |||
| 91 | </div> | ||
| 92 | |||
| 93 | |||
| 94 | </div> | ||
| 95 | </div> | ||
| 96 | </div> | ||
| 97 | <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> | ||
| 98 | <div class="sphinxsidebarwrapper"> | ||
| 99 | <h4>Previous topic</h4> | ||
| 100 | <p class="topless"><a href="index.html" | ||
| 101 | title="previous chapter">Welcome to EventMQ’s documentation!</a></p> | ||
| 102 | <h4>Next topic</h4> | ||
| 103 | <p class="topless"><a href="receiver.html" | ||
| 104 | title="next chapter"><code class="docutils literal"><span class="pre">receiver</span></code> – Receiver</a></p> | ||
| 105 | <div role="note" aria-label="source link"> | ||
| 106 | <h3>This Page</h3> | ||
| 107 | <ul class="this-page-menu"> | ||
| 108 | <li><a href="_sources/jobmanager.txt" | ||
| 109 | rel="nofollow">Show Source</a></li> | ||
| 110 | </ul> | ||
| 111 | </div> | ||
| 112 | <div id="searchbox" style="display: none" role="search"> | ||
| 113 | <h3>Quick search</h3> | ||
| 114 | <form class="search" action="search.html" method="get"> | ||
| 115 | <input type="text" name="q" /> | ||
| 116 | <input type="submit" value="Go" /> | ||
| 117 | <input type="hidden" name="check_keywords" value="yes" /> | ||
| 118 | <input type="hidden" name="area" value="default" /> | ||
| 119 | </form> | ||
| 120 | <p class="searchtip" style="font-size: 90%"> | ||
| 121 | Enter search terms or a module, class or function name. | ||
| 122 | </p> | ||
| 123 | </div> | ||
| 124 | <script type="text/javascript">$('#searchbox').show(0);</script> | ||
| 125 | </div> | ||
| 126 | </div> | ||
| 127 | <div class="clearer"></div> | ||
| 128 | </div> | ||
| 129 | <div class="related" role="navigation" aria-label="related navigation"> | ||
| 130 | <h3>Navigation</h3> | ||
| 131 | <ul> | ||
| 132 | <li class="right" style="margin-right: 10px"> | ||
| 133 | <a href="genindex.html" title="General Index" | ||
| 134 | >index</a></li> | ||
| 135 | <li class="right" > | ||
| 136 | <a href="py-modindex.html" title="Python Module Index" | ||
| 137 | >modules</a> |</li> | ||
| 138 | <li class="right" > | ||
| 139 | <a href="receiver.html" title="receiver – Receiver" | ||
| 140 | >next</a> |</li> | ||
| 141 | <li class="right" > | ||
| 142 | <a href="index.html" title="Welcome to EventMQ’s documentation!" | ||
| 143 | >previous</a> |</li> | ||
| 144 | <li class="nav-item nav-item-0"><a href="index.html">EventMQ 0 documentation</a> »</li> | ||
| 145 | </ul> | ||
| 146 | </div> | ||
| 147 | <div class="footer" role="contentinfo"> | ||
| 148 | © Copyright 2015, eventboard.io. | ||
| 149 | Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1. | ||
| 150 | </div> | ||
| 151 | </body> | ||
| 152 | </html> \ No newline at end of file | ||