| 834 | } |
| 835 | |
| 836 | bool MethodCall::doesntExpectReply() const |
| 837 | { |
| 838 | auto r = sd_bus_message_get_expect_reply(static_cast<sd_bus_message*>(msg_)); |
| 839 | SDBUS_THROW_ERROR_IF(r < 0, "Failed to get the dont-expect-reply flag", -r); |
| 840 | return r == 0; |
| 841 | } |
| 842 | |
| 843 | MethodReply MethodCall::send(uint64_t timeout) const |
| 844 | { |
nothing calls this directly
no outgoing calls
no test coverage detected