// // any_io_executor.hpp // ~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2020 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 BOOST_ASIO_ANY_IO_EXECUTOR_HPP #define BOOST_ASIO_ANY_IO_EXECUTOR_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include #if defined(BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT) # include #else // defined(BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT) # include # include #endif // defined(BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT) #include namespace boost { namespace asio { #if defined(BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT) typedef executor any_io_executor; #else // defined(BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT) /// Polymorphic executor type for use with I/O objects. /** * The @c any_io_executor type is a polymorphic executor that supports the set * of properties required by I/O objects. It is defined as the * execution::any_executor class template parameterised as follows: * @code execution::any_executor< * execution::context_as_t, * execution::blocking_t::never_t, * execution::prefer_only, * execution::prefer_only, * execution::prefer_only, * execution::prefer_only, * execution::prefer_only * > @endcode */ #if defined(GENERATING_DOCUMENTATION) typedef execution::any_executor<...> any_io_executor; #else // defined(GENERATING_DOCUMENTATION) typedef execution::any_executor< execution::context_as_t, execution::blocking_t::never_t, execution::prefer_only, execution::prefer_only, execution::prefer_only, execution::prefer_only, execution::prefer_only > any_io_executor; #endif // defined(GENERATING_DOCUMENTATION) #endif // defined(BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT) } // namespace asio } // namespace boost #include #endif // BOOST_ASIO_ANY_IO_EXECUTOR_HPP