| 318 | void message::ttl(duration d) { pn_message_set_ttl(pn_msg(), d.milliseconds()); } |
| 319 | |
| 320 | uint8_t message::priority() const { return pn_message_get_priority(pn_msg()); } |
| 321 | void message::priority(uint8_t d) { pn_message_set_priority(pn_msg(), d); } |
| 322 | |
| 323 | bool message::first_acquirer() const { return pn_message_is_first_acquirer(pn_msg()); } |