From ed45c8f8457be40b49ac3770ee2430a420d33d70 Mon Sep 17 00:00:00 2001 From: Yash Tibrewal Date: Thu, 10 Oct 2019 15:03:46 -0700 Subject: [PATCH] Stronger guarantee on failure of read/write operations --- include/grpcpp/impl/codegen/client_callback_impl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/grpcpp/impl/codegen/client_callback_impl.h b/include/grpcpp/impl/codegen/client_callback_impl.h index 34c738ac1e6..bf3ef2f8272 100644 --- a/include/grpcpp/impl/codegen/client_callback_impl.h +++ b/include/grpcpp/impl/codegen/client_callback_impl.h @@ -285,18 +285,18 @@ class ClientBidiReactor { /// call of OnReadDone or OnDone. /// /// \param[in] ok Was the initial metadata read successfully? If false, no - /// further read-side operation will succeed. + /// new read/write operation will succeed. virtual void OnReadInitialMetadataDone(bool /*ok*/) {} /// Notifies the application that a StartRead operation completed. /// - /// \param[in] ok Was it successful? If false, no further read-side operation + /// \param[in] ok Was it successful? If false, no new read/write operation /// will succeed. virtual void OnReadDone(bool /*ok*/) {} /// Notifies the application that a StartWrite operation completed. /// - /// \param[in] ok Was it successful? If false, no further write-side operation + /// \param[in] ok Was it successful? If false, no new read/write operation /// will succeed. virtual void OnWriteDone(bool /*ok*/) {}