| 705 | } |
| 706 | |
| 707 | bool Message::isAtEnd(bool complete) const |
| 708 | { |
| 709 | return sd_bus_message_at_end(static_cast<sd_bus_message*>(msg_), complete) > 0; // NOLINT(readability-implicit-bool-conversion) |
| 710 | } |
| 711 | |
| 712 | // TODO: Create a RAII ownership class for creds with copy&move semantics, doing ref()/unref() under the hood. |
| 713 | // Create a method Message::querySenderCreds() that will return an object of this class by value, through IConnection and SdBus mutex. |
nothing calls this directly
no outgoing calls
no test coverage detected