[C++] Remove mention of `set_buffer_hint` (#1275)

fixes: grpc/grpc#34823
This commit is contained in:
Eugene Ostroukhov 2024-03-26 11:30:52 -07:00 committed by GitHub
parent eb31d760f0
commit a59839a611
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 6 deletions

View File

@ -68,12 +68,7 @@ description: A user guide of both general and language-specific best practices t
* For the async completion-queue API, make sure to **register enough server
requests for the desired level of concurrency** to avoid the server
continuously getting stuck in a slow path that results in essentially serial
request processing.
* *(Special topic)* **Enable write batching in streams** if message k + 1 does not rely on
responses from message k by passing a WriteOptions argument to Write with
buffer_hint set: \
`stream_writer->Write(message, WriteOptions().set_buffer_hint());`
request processing.
* *(Special topic)*
[gRPC::GenericStub](https://grpc.github.io/grpc/cpp/grpcpp_2generic_2generic__stub_8h.html)