~ubuntu-branches/debian/jessie/sqlalchemy/jessie

« back to all changes in this revision

Viewing changes to doc/core/event.html

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2013-10-28 22:29:40 UTC
  • mfrom: (1.4.24)
  • Revision ID: package-import@ubuntu.com-20131028222940-wvyqffl4g617caun
Tags: 0.8.3-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
    <script type="text/javascript">
21
21
      var DOCUMENTATION_OPTIONS = {
22
22
          URL_ROOT:    '../',
23
 
          VERSION:     '0.8.2',
 
23
          VERSION:     '0.8.3',
24
24
          COLLAPSE_MODINDEX: false,
25
25
          FILE_SUFFIX: '.html'
26
26
      };
35
35
    <link rel="top" title="SQLAlchemy 0.8 Documentation" href="../index.html" />
36
36
        <link rel="up" title="SQLAlchemy Core" href="index.html" />
37
37
        <link rel="next" title="Core Events" href="events.html" />
38
 
        <link rel="prev" title="Column and Data Types" href="types.html" />
 
38
        <link rel="prev" title="Connection Pooling" href="pooling.html" />
39
39
 
40
40
    </head>
41
41
    <body>
67
67
    </div>
68
68
 
69
69
    <div id="docs-version-header">
70
 
        Release: <span class="version-num">0.8.2</span> | Release Date: July 3, 2013
 
70
        Release: <span class="version-num">0.8.3</span> | Release Date: October 26, 2013
71
71
 
72
72
 
73
73
    </div>
78
78
    <div id="docs-top-page-control" class="docs-navigation-links">
79
79
        <ul>
80
80
            <li>Prev:
81
 
            <a href="types.html" title="previous chapter">Column and Data Types</a>
 
81
            <a href="pooling.html" title="previous chapter">Connection Pooling</a>
82
82
            </li>
83
83
            <li>Next:
84
84
            <a href="events.html" title="next chapter">Core Events</a>
126
126
 
127
127
    <h4>Previous Topic</h4>
128
128
    <p>
129
 
    <a href="types.html" title="previous chapter">Column and Data Types</a>
 
129
    <a href="pooling.html" title="previous chapter">Connection Pooling</a>
130
130
    </p>
131
131
    <h4>Next Topic</h4>
132
132
    <p>
151
151
<span id="event-toplevel"></span><h1>Events<a class="headerlink" href="#events" title="Permalink to this headline">¶</a></h1>
152
152
<p>SQLAlchemy includes an event API which publishes a wide variety of hooks into
153
153
the internals of both SQLAlchemy Core and ORM.</p>
154
 
<p class="versionadded">
155
 
<span class="versionmodified">New in version 0.7: </span>The system supercedes the previous system of &#8220;extension&#8221;, &#8220;proxy&#8221;,
 
154
<div class="versionadded">
 
155
<p><span>New in version 0.7: </span>The system supercedes the previous system of &#8220;extension&#8221;, &#8220;proxy&#8221;,
156
156
and &#8220;listener&#8221; classes.</p>
 
157
</div>
157
158
<div class="section" id="event-registration">
158
159
<h2>Event Registration<a class="headerlink" href="#event-registration" title="Permalink to this headline">¶</a></h2>
159
160
<p>Subscribing to an event occurs through a single API point, the <a class="reference internal" href="#sqlalchemy.event.listen" title="sqlalchemy.event.listen"><tt class="xref py py-func docutils literal"><span class="pre">listen()</span></tt></a> function.   This function
286
287
 
287
288
<div id="docs-bottom-navigation" class="docs-navigation-links">
288
289
        Previous:
289
 
        <a href="types.html" title="previous chapter">Column and Data Types</a>
 
290
        <a href="pooling.html" title="previous chapter">Connection Pooling</a>
290
291
        Next:
291
292
        <a href="events.html" title="next chapter">Core Events</a>
292
293
 
293
294
    <div id="docs-copyright">
294
295
        &copy; <a href="../copyright.html">Copyright</a> 2007-2013, the SQLAlchemy authors and contributors.
295
 
        Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
 
296
        Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.2b1.
296
297
    </div>
297
298
</div>
298
299