Add more docs on isPending function

This commit is contained in:
sangelovic
2020-03-29 22:33:13 +02:00
parent fe6650be0f
commit 690f0b1387

View File

@ -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();