Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.

boost/beast/experimental/core/impl/timeout_service.ipp

//
// Copyright (c) 2018 Vinnie Falco (vinnie dot falco at gmail 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)
//
// Official repository: https://github.com/boostorg/beast
//

#ifndef BOOST_BEAST_CORE_IMPL_TIMEOUT_SERVICE_HPP
#define BOOST_BEAST_CORE_IMPL_TIMEOUT_SERVICE_HPP

#include <boost/beast/experimental/core/detail/timeout_service.hpp>

namespace boost {
namespace beast {

inline
void
set_timeout_service_options(
    boost::asio::io_context& ioc,
    std::chrono::seconds interval)
{
    boost::asio::use_service<
        detail::timeout_service>(ioc).set_option(interval);
}

} // beast
} // boost

#endif