From 690f0b13878e246a4a0761a1dc05ad9c79eabc9d Mon Sep 17 00:00:00 2001 From: sangelovic Date: Sun, 29 Mar 2020 22:33:13 +0200 Subject: [PATCH] Add more docs on isPending function --- include/sdbus-c++/IProxy.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/sdbus-c++/IProxy.h b/include/sdbus-c++/IProxy.h index 554fb40..40248c8 100644 --- a/include/sdbus-c++/IProxy.h +++ b/include/sdbus-c++/IProxy.h @@ -290,6 +290,10 @@ namespace sdbus { * @brief Answers whether the asynchronous call is still pending * * @return True if the call is pending, false if the call has been fully completed + * + * Pending call in this context means a call whose results have not arrived, + * or have arrived and are currently being handled by the async callback handler. + * After the callback handler has completed, the call is deemed completed. */ bool isPending();