forked from boostorg/mqtt5
Use basic_channel instead of basic_concurrent_channel
Summary: related to T11798 Reviewers: ivica Reviewed By: ivica Subscribers: miljen, iljazovic Differential Revision: https://repo.mireo.local/D28061
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
#include <utility>
|
||||
|
||||
#include <boost/asio/prepend.hpp>
|
||||
#include <boost/asio/experimental/basic_concurrent_channel.hpp>
|
||||
#include <boost/asio/experimental/basic_channel.hpp>
|
||||
|
||||
#include <async_mqtt5/detail/channel_traits.hpp>
|
||||
#include <async_mqtt5/detail/internal_types.hpp>
|
||||
@ -211,7 +211,7 @@ public:
|
||||
using executor_type = typename stream_type::executor_type;
|
||||
private:
|
||||
using tls_context_type = TlsContext;
|
||||
using receive_channel = asio::experimental::basic_concurrent_channel<
|
||||
using receive_channel = asio::experimental::basic_channel<
|
||||
executor_type,
|
||||
channel_traits<>,
|
||||
void (error_code, std::string, std::string, publish_props)
|
||||
|
Reference in New Issue
Block a user