summaryrefslogtreecommitdiff
path: root/boost/beast/experimental/core/timeout_service.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/beast/experimental/core/timeout_service.hpp')
-rw-r--r--boost/beast/experimental/core/timeout_service.hpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/boost/beast/experimental/core/timeout_service.hpp b/boost/beast/experimental/core/timeout_service.hpp
deleted file mode 100644
index 2a5da2b887..0000000000
--- a/boost/beast/experimental/core/timeout_service.hpp
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// 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_TIMEOUT_SERVICE_HPP
-#define BOOST_BEAST_CORE_TIMEOUT_SERVICE_HPP
-
-//#include <boost/asio/execution_context.hpp>
-#include <boost/asio/io_context.hpp>
-#include <chrono>
-
-namespace boost {
-namespace beast {
-
-/** Set timeout service options in an execution context.
-
- This changes the time interval for all timeouts associated
- with the execution context. The option must be set before any
- timeout objects are constructed.
-
- @param ctx The execution context.
-
- @param interval The approximate amount of time until a timeout occurs.
-*/
-void
-set_timeout_service_options(
- boost::asio::io_context& ctx, // VFALCO should be execution_context
- std::chrono::seconds interval);
-
-} // beast
-} // boost
-
-#include <boost/beast/experimental/core/impl/timeout_service.ipp>
-
-#endif