| 134 | } |
| 135 | |
| 136 | sdbus::PendingAsyncCall TestProxy::doOperationClientSideAsync(uint32_t param) |
| 137 | { |
| 138 | return getProxy().callMethodAsync("doOperation") |
| 139 | .onInterface(sdbus::test::INTERFACE_NAME) |
| 140 | .withArguments(param) |
| 141 | .uponReplyInvoke([this](std::optional<sdbus::Error> error, uint32_t returnValue) |
| 142 | { |
| 143 | this->onDoOperationReply(returnValue, std::move(error)); |
| 144 | }); |
| 145 | } |
| 146 | |
| 147 | Slot TestProxy::doOperationClientSideAsync(uint32_t param, sdbus::return_slot_t) |
| 148 | { |
no test coverage detected