// // experimental/detail/channel_payload.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2022 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_EXPERIMENTAL_DETAIL_CHANNEL_PAYLOAD_HPP #define BOOST_ASIO_EXPERIMENTAL_DETAIL_CHANNEL_PAYLOAD_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 experimental { namespace detail { template class channel_payload { public: template channel_payload(BOOST_ASIO_MOVE_ARG(channel_message) m) : message_(BOOST_ASIO_MOVE_CAST(channel_message)(m)) { } template void receive(Handler& handler) { std::visit( [&](auto& message) { message.receive(handler); }, message_); } private: std::variant...> message_; }; template class channel_payload { public: explicit channel_payload(channel_message) { } template void receive(Handler& handler) { BOOST_ASIO_MOVE_OR_LVALUE(Handler)(handler)(); } }; template class channel_payload { public: channel_payload(BOOST_ASIO_MOVE_ARG(channel_message) m) : message_(BOOST_ASIO_MOVE_CAST(channel_message)(m)) { } template void receive(Handler& handler) { message_.receive(handler); } private: channel_message message_; }; } // namespace detail } // namespace experimental } // namespace asio } // namespace boost #include #endif // BOOST_ASIO_EXPERIMENTAL_DETAIL_CHANNEL_PAYLOAD_HPP