• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4<title>basic_waitable_timer::async_wait</title>
5<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
6<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
7<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
8<link rel="up" href="../basic_waitable_timer.html" title="basic_waitable_timer">
9<link rel="prev" href="../basic_waitable_timer.html" title="basic_waitable_timer">
10<link rel="next" href="basic_waitable_timer.html" title="basic_waitable_timer::basic_waitable_timer">
11</head>
12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13<table cellpadding="2" width="100%"><tr>
14<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
15<td align="center"><a href="../../../../../index.html">Home</a></td>
16<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
17<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
18<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
19<td align="center"><a href="../../../../../more/index.htm">More</a></td>
20</tr></table>
21<hr>
22<div class="spirit-nav">
23<a accesskey="p" href="../basic_waitable_timer.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_waitable_timer.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="basic_waitable_timer.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
24</div>
25<div class="section">
26<div class="titlepage"><div><div><h4 class="title">
27<a name="boost_asio.reference.basic_waitable_timer.async_wait"></a><a class="link" href="async_wait.html" title="basic_waitable_timer::async_wait">basic_waitable_timer::async_wait</a>
28</h4></div></div></div>
29<p>
30          <a class="indexterm" name="boost_asio.indexterm.basic_waitable_timer.async_wait"></a>
31Start
32          an asynchronous wait on the timer.
33        </p>
34<pre class="programlisting">template&lt;
35    typename <a class="link" href="../WaitHandler.html" title="Wait handler requirements">WaitHandler</a> = <a class="link" href="../asynchronous_operations.html#boost_asio.reference.asynchronous_operations.default_completion_tokens"><span class="emphasis"><em>DEFAULT</em></span></a>&gt;
36<a class="link" href="../asynchronous_operations.html#boost_asio.reference.asynchronous_operations.automatic_deduction_of_initiating_function_return_type"><span class="emphasis"><em>DEDUCED</em></span></a> async_wait(
37    WaitHandler &amp;&amp; handler = <a class="link" href="../asynchronous_operations.html#boost_asio.reference.asynchronous_operations.default_completion_tokens"><span class="emphasis"><em>DEFAULT</em></span></a>);
38</pre>
39<p>
40          This function may be used to initiate an asynchronous wait against the
41          timer. It always returns immediately.
42        </p>
43<p>
44          For each call to <code class="computeroutput">async_wait()</code>, the supplied handler will be
45          called exactly once. The handler will be called when:
46        </p>
47<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
48<li class="listitem">
49              The timer has expired.
50            </li>
51<li class="listitem">
52              The timer was cancelled, in which case the handler is passed the error
53              code <code class="computeroutput">boost::asio::error::operation_aborted</code>.
54            </li>
55</ul></div>
56<h6>
57<a name="boost_asio.reference.basic_waitable_timer.async_wait.h0"></a>
58          <span class="phrase"><a name="boost_asio.reference.basic_waitable_timer.async_wait.parameters"></a></span><a class="link" href="async_wait.html#boost_asio.reference.basic_waitable_timer.async_wait.parameters">Parameters</a>
59        </h6>
60<div class="variablelist">
61<p class="title"><b></b></p>
62<dl class="variablelist">
63<dt><span class="term">handler</span></dt>
64<dd>
65<p>
66                The handler to be called when the timer expires. Copies will be made
67                of the handler as required. The function signature of the handler
68                must be:
69</p>
70<pre class="programlisting">void handler(
71  const boost::system::error_code&amp; error // Result of operation.
72);
73</pre>
74<p>
75                Regardless of whether the asynchronous operation completes immediately
76                or not, the handler will not be invoked from within this function.
77                On immediate completion, invocation of the handler will be performed
78                in a manner equivalent to using <a class="link" href="../post.html" title="post"><code class="computeroutput">post</code></a>.
79              </p>
80</dd>
81</dl>
82</div>
83</div>
84<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
85<td align="left"></td>
86<td align="right"><div class="copyright-footer">Copyright © 2003-2020 Christopher M.
87      Kohlhoff<p>
88        Distributed under the Boost Software License, Version 1.0. (See accompanying
89        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>)
90      </p>
91</div></td>
92</tr></table>
93<hr>
94<div class="spirit-nav">
95<a accesskey="p" href="../basic_waitable_timer.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_waitable_timer.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="basic_waitable_timer.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
96</div>
97</body>
98</html>
99