doc/html/boost_asio/example/cpp11/type_erasure/sleep.hpp
// // sleep.hpp // ~~~~~~~~~ // // Copyright (c) 2003-2023 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef SLEEP_HPP #define SLEEP_HPP #include <boost/asio/any_completion_handler.hpp> #include <boost/asio/any_io_executor.hpp> #include <boost/asio/async_result.hpp> #include <boost/asio/error.hpp> #include <chrono> void async_sleep_impl( boost::asio::any_completion_handler<void(boost::system::error_code)> handler, boost::asio::any_io_executor ex, std::chrono::nanoseconds duration); template <typename CompletionToken> inline auto async_sleep(boost::asio::any_io_executor ex, std::chrono::nanoseconds duration, CompletionToken&& token) -> decltype( boost::asio::async_initiate<CompletionToken, void(boost::system::error_code)>( async_sleep_impl, token, std::move(ex), duration)) { return boost::asio::async_initiate<CompletionToken, void(boost::system::error_code)>( async_sleep_impl, token, std::move(ex), duration); } #endif // SLEEP_HPP