// // 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 ASIO_EXPERIMENTAL_DETAIL_CHANNEL_PAYLOAD_HPP #define ASIO_EXPERIMENTAL_DETAIL_CHANNEL_PAYLOAD_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/experimental/detail/channel_message.hpp" #include "asio/detail/push_options.hpp" namespace asio { namespace experimental { namespace detail { template class channel_payload { public: template channel_payload(ASIO_MOVE_ARG(channel_message) m) : message_(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) { ASIO_MOVE_OR_LVALUE(Handler)(handler)(); } }; template class channel_payload { public: channel_payload(ASIO_MOVE_ARG(channel_message) m) : message_(ASIO_MOVE_CAST(channel_message)(m)) { } template void receive(Handler& handler) { message_.receive(handler); } private: channel_message message_; }; } // namespace detail } // namespace experimental } // namespace asio #include "asio/detail/pop_options.hpp" #endif // ASIO_EXPERIMENTAL_DETAIL_CHANNEL_PAYLOAD_HPP