async_mqtt 5.0.0
|
MQTT DISCONNECT packet (v5) More...
#include <v5_disconnect.hpp>
Public Member Functions | |
disconnect_packet (disconnect_reason_code reason_code, properties props) | |
constructor | |
disconnect_packet () | |
constructor | |
disconnect_packet (disconnect_reason_code reason_code) | |
constructor | |
std::vector< as::const_buffer > | const_buffer_sequence () const |
Create const buffer sequence it is for boost asio APIs. | |
std::size_t | size () const |
Get packet size. | |
std::size_t | num_of_const_buffer_sequence () const |
Get number of element of const_buffer_sequence. | |
disconnect_reason_code | code () const |
properties const & | props () const |
MQTT DISCONNECT packet (v5)
When the endpoint sends DISCONNECT packet, then the endpoint become disconnecting status. The endpoint can't send packets any more. The underlying layer is not automatically closed from the client side. If you want to close the underlying layer from the client side, you need to call basic_endpoint::close() after sending DISCONNECT packet. When the broker receives DISCONNECT packet, then close underlying layer from the broker. In this case, Will is not published by the broker except reason_code is Disconnect with Will Message.
See https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901205
|
inline |
constructor
reason_code | DisonnectReasonCode See https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901208 |
props | properties. See https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901209 |
|
inline |
constructor
reason_code | DisonnectReasonCode See https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901208 |
|
inline |
@breif Get reason code
|
inline |
Create const buffer sequence it is for boost asio APIs.
|
inline |
Get number of element of const_buffer_sequence.
|
inline |
@breif Get properties
|
inline |
Get packet size.