PrevUpHomeNext
will::will

Constructs an empty Will Message.

will() = default;
  » more...

Construct a Will Message.

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

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

PrevUpHomeNext