Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
boost::mqtt5::will::will

Constructs an empty Will Message.

will();
  » more...

Construct a Will Message.

will(
    std::string topic,
    std::string message,
    boost::mqtt5::qos_e qos = boost::mqtt5::qos_e::at_most_once,
    boost::mqtt5::retain_e retain = boost::mqtt5::retain_e::no);
  » more...

will(
    std::string topic,
    std::string message,
    boost::mqtt5::qos_e qos,
    boost::mqtt5::retain_e retain,
    will_props props);
  » more...

PrevUpHomeNext