Sophie

Sophie

distrib > Mageia > 1 > i586 > media > core-release > by-pkgid > 2deed065cd3adb9905decb703c6b0100 > files > 1520

asio-1.4.5-1.mga1.i586.rpm

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>io_service::strand::post</title>
<link rel="stylesheet" href="../../../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
<link rel="start" href="../../../index.html" title="Asio">
<link rel="up" href="../io_service__strand.html" title="io_service::strand">
<link rel="prev" href="io_service.html" title="io_service::strand::io_service">
<link rel="next" href="strand.html" title="io_service::strand::strand">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="io_service.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../io_service__strand.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="strand.html"><img src="../../../next.png" alt="Next"></a>
</div>
<div class="section" lang="en">
<div class="titlepage"><div><div><h4 class="title">
<a name="asio.reference.io_service__strand.post"></a><a class="link" href="post.html" title="io_service::strand::post"> io_service::strand::post</a>
</h4></div></div></div>
<p>
          <a class="indexterm" name="id850612"></a> 
Request the strand to invoke the given handler and
          return immediately.
        </p>
<pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span>
    <span class="keyword">typename</span> <a class="link" href="../Handler.html" title="Handlers">Handler</a><span class="special">&gt;</span>
<span class="keyword">void</span> <span class="identifier">post</span><span class="special">(</span>
    <span class="identifier">Handler</span> <span class="identifier">handler</span><span class="special">);</span>
</pre>
<p>
          This function is used to ask the strand to execute the given handler, but
          without allowing the strand to call the handler from inside this function.
        </p>
<p>
          The strand object guarantees that handlers posted or dispatched through
          the strand will not be executed concurrently. The strand's guarantee is
          in addition to the guarantee provided by the underlying <a class="link" href="../io_service.html" title="io_service"><code class="computeroutput"><span class="identifier">io_service</span></code></a>. The <a class="link" href="../io_service.html" title="io_service"><code class="computeroutput"><span class="identifier">io_service</span></code></a> guarantees that the
          handler will only be called in a thread in which the io_service's run member
          function is currently being invoked.
        </p>
<a name="asio.reference.io_service__strand.post.parameters"></a><h6>
<a name="id850735"></a>
          <a class="link" href="post.html#asio.reference.io_service__strand.post.parameters">Parameters</a>
        </h6>
<div class="variablelist">
<p class="title"><b></b></p>
<dl>
<dt><span class="term">handler</span></dt>
<dd>
<p>
              The handler to be called. The strand will make a copy of the handler
              object as required. The function signature of the handler must be:
              
</p>
<pre class="programlisting"><span class="keyword">void</span> <span class="identifier">handler</span><span class="special">();</span> 
</pre>
<p>
            </p>
</dd>
</dl>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright &#169; 2003 - 2010 Christopher M. Kohlhoff<p>
        Distributed under the Boost Software License, Version 1.0. (See accompanying
        file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
      </p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="io_service.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../io_service__strand.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="strand.html"><img src="../../../next.png" alt="Next"></a>
</div>
</body>
</html>