1<html> 2<head> 3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 4<title>Source listing for Timer.2</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="../tuttimer2.html" title="Timer.2 - Using a timer asynchronously"> 9<link rel="prev" href="../tuttimer2.html" title="Timer.2 - Using a timer asynchronously"> 10<link rel="next" href="../tuttimer3.html" title="Timer.3 - Binding arguments to a handler"> 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="../tuttimer2.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tuttimer2.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="../tuttimer3.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.tutorial.tuttimer2.src"></a><a class="link" href="src.html" title="Source listing for Timer.2">Source listing for 28 Timer.2</a> 29</h4></div></div></div> 30<pre class="programlisting">// 31// timer.cpp 32// ~~~~~~~~~ 33// 34// Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com) 35// 36// Distributed under the Boost Software License, Version 1.0. (See accompanying 37// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 38// 39 40#include <iostream> 41#include <boost/asio.hpp> 42 43void print(const boost::system::error_code& /*e*/) 44{ 45 std::cout << "Hello, world!" << std::endl; 46} 47 48int main() 49{ 50 boost::asio::io_context io; 51 52 boost::asio::steady_timer t(io, boost::asio::chrono::seconds(5)); 53 t.async_wait(&print); 54 55 io.run(); 56 57 return 0; 58} 59</pre> 60<p> 61 Return to <a class="link" href="../tuttimer2.html" title="Timer.2 - Using a timer asynchronously">Timer.2 - Using 62 a timer asynchronously</a> 63 </p> 64</div> 65<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> 66<td align="left"></td> 67<td align="right"><div class="copyright-footer">Copyright © 2003-2020 Christopher M. 68 Kohlhoff<p> 69 Distributed under the Boost Software License, Version 1.0. (See accompanying 70 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>) 71 </p> 72</div></td> 73</tr></table> 74<hr> 75<div class="spirit-nav"> 76<a accesskey="p" href="../tuttimer2.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tuttimer2.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="../tuttimer3.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> 77</div> 78</body> 79</html> 80