| 856 | } |
| 857 | |
| 858 | MethodReply MethodCall::sendWithNoReply() const |
| 859 | { |
| 860 | connection_->sendMessage(static_cast<sd_bus_message*>(msg_)); |
| 861 | |
| 862 | return Factory::create<MethodReply>(); // No reply |
| 863 | } |
| 864 | |
| 865 | Slot MethodCall::send(void* callback, void* userData, uint64_t timeout, return_slot_t) const // NOLINT(bugprone-easily-swappable-parameters) |
| 866 | { |
nothing calls this directly
no test coverage detected