Merge pull request #18686 from hcaseyal/callback_doc

Update callback API documentation
pull/18063/head^2
hcaseyal 6 years ago committed by GitHub
commit ca11dfb349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      include/grpcpp/impl/codegen/server_callback.h

@ -253,7 +253,9 @@ class ServerBidiReactor : public internal::ServerReactor {
void Finish(Status s) { stream_->Finish(std::move(s)); }
/// Notify the application that a streaming RPC has started and that it is now
/// ok to call any operation initation method.
/// ok to call any operation initiation method. An RPC is considered started
/// after the server has received all initial metadata from the client, which
/// is a result of the client calling StartCall().
///
/// \param[in] context The context object now associated with this RPC
virtual void OnStarted(ServerContext* context) {}

Loading…
Cancel
Save