| 849 | } |
| 850 | |
| 851 | MethodReply MethodCall::sendWithReply(uint64_t timeout) const |
| 852 | { |
| 853 | auto* sdbusReply = connection_->callMethod(static_cast<sd_bus_message*>(msg_), timeout); |
| 854 | |
| 855 | return Factory::create<MethodReply>(sdbusReply, connection_, adopt_message); |
| 856 | } |
| 857 | |
| 858 | MethodReply MethodCall::sendWithNoReply() const |
| 859 | { |
nothing calls this directly
no test coverage detected