// // experimental/detail/channel_message.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 ASIO_EXPERIMENTAL_DETAIL_CHANNEL_MESSAGE_HPP #define ASIO_EXPERIMENTAL_DETAIL_CHANNEL_MESSAGE_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include "asio/detail/config.hpp" #include #include "asio/detail/type_traits.hpp" #include "asio/detail/utility.hpp" #include "asio/detail/push_options.hpp" namespace asio { namespace experimental { namespace detail { template class channel_message; template class channel_message { public: channel_message(int) { } template void receive(Handler& handler) { ASIO_MOVE_OR_LVALUE(Handler)(handler)(); } }; template class channel_message { public: template channel_message(int, ASIO_MOVE_ARG(T0) t0) : arg0_(ASIO_MOVE_CAST(T0)(t0)) { } template void receive(Handler& handler) { ASIO_MOVE_OR_LVALUE(Handler)(handler)( ASIO_MOVE_CAST(arg0_type)(arg0_)); } private: typedef typename decay::type arg0_type; arg0_type arg0_; }; template class channel_message { public: template channel_message(int, ASIO_MOVE_ARG(T0) t0, ASIO_MOVE_ARG(T1) t1) : arg0_(ASIO_MOVE_CAST(T0)(t0)), arg1_(ASIO_MOVE_CAST(T1)(t1)) { } template void receive(Handler& handler) { ASIO_MOVE_OR_LVALUE(Handler)(handler)( ASIO_MOVE_CAST(arg0_type)(arg0_), ASIO_MOVE_CAST(arg1_type)(arg1_)); } private: typedef typename decay::type arg0_type; arg0_type arg0_; typedef typename decay::type arg1_type; arg1_type arg1_; }; template class channel_message { public: template channel_message(int, ASIO_MOVE_ARG(T)... t) : args_(ASIO_MOVE_CAST(T)(t)...) { } template void receive(Handler& h) { this->do_receive(h, asio::detail::index_sequence_for()); } private: template void do_receive(Handler& h, asio::detail::index_sequence) { ASIO_MOVE_OR_LVALUE(Handler)(h)( std::get(ASIO_MOVE_CAST(args_type)(args_))...); } typedef std::tuple::type...> args_type; args_type args_; }; } // namespace detail } // namespace experimental } // namespace asio #include "asio/detail/pop_options.hpp" #endif // ASIO_EXPERIMENTAL_DETAIL_CHANNEL_MESSAGE_HPP