PrevUpHomeNext
mqtt_client::connect_property

Assign a property that will be sent in a CONNECT packet.

template <
    prop::property_type p
>
mqtt_client & connect_property(
    std::integral_constant< prop::property_type, p > prop,
    prop::value_type_t< p > value
);
Description
Parameters

Name

Description

prop

The async_mqtt5::connect_props property to set.

value

Value that will be assigned to the property.

Example
client.connect_property(prop::session_expiry_interval, 40); // ok
client.connect_property(prop::reason_string, "reason"); // does not compile, not a CONNECT prop!
See More

See async_mqtt5::connect_props for all eligible properties.


PrevUpHomeNext