| 828 | } |
| 829 | |
| 830 | void MethodCall::dontExpectReply() |
| 831 | { |
| 832 | auto r = sd_bus_message_set_expect_reply(static_cast<sd_bus_message*>(msg_), 0); |
| 833 | SDBUS_THROW_ERROR_IF(r < 0, "Failed to set the dont-expect-reply flag", -r); |
| 834 | } |
| 835 | |
| 836 | bool MethodCall::doesntExpectReply() const |
| 837 | { |
no outgoing calls