// // detail/completion_message.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2024 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_DETAIL_COMPLETION_MESSAGE_HPP #define BOOST_ASIO_DETAIL_COMPLETION_MESSAGE_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include #include #include #include #include namespace boost { namespace asio { namespace detail { template class completion_message; template class completion_message { public: completion_message(int) { } template void receive(Handler& handler) { static_cast(handler)(); } }; template class completion_message { public: template completion_message(int, T0&& t0) : arg0_(static_cast(t0)) { } template void receive(Handler& handler) { static_cast(handler)( static_cast(arg0_)); } private: typedef decay_t arg0_type; arg0_type arg0_; }; template class completion_message { public: template completion_message(int, T0&& t0, T1&& t1) : arg0_(static_cast(t0)), arg1_(static_cast(t1)) { } template void receive(Handler& handler) { static_cast(handler)( static_cast(arg0_), static_cast(arg1_)); } private: typedef decay_t arg0_type; arg0_type arg0_; typedef decay_t arg1_type; arg1_type arg1_; }; template class completion_message { public: template completion_message(int, T&&... t) : args_(static_cast(t)...) { } template void receive(Handler& h) { this->do_receive(h, boost::asio::detail::index_sequence_for()); } private: template void do_receive(Handler& h, boost::asio::detail::index_sequence) { static_cast(h)( std::get(static_cast(args_))...); } typedef std::tuple...> args_type; args_type args_; }; } // namespace detail } // namespace asio } // namespace boost #include #endif // BOOST_ASIO_DETAIL_COMPLETION_MESSAGE_HPP