Skip to content
This repository was archived by the owner on Apr 9, 2021. It is now read-only.

Commit f77d95a

Browse files
committed
gRPC guarantees are per RPC call
1 parent ce393be commit f77d95a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

docs/guides/concepts.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ rpc SayHello(HelloRequest) returns (HelloResponse){
5656
- Server streaming RPCs where the client sends a request to the server and gets
5757
a stream to read a sequence of messages back. The client reads from the
5858
returned stream until there are no more messages. gRPC guarantees message
59-
ordering.
59+
ordering within an individual RPC call.
6060

6161
```
6262
rpc LotsOfReplies(HelloRequest) returns (stream HelloResponse){
@@ -66,7 +66,8 @@ rpc LotsOfReplies(HelloRequest) returns (stream HelloResponse){
6666
- Client streaming RPCs where the client writes a sequence of messages and sends
6767
them to the server, again using a provided stream. Once the client has
6868
finished writing the messages, it waits for the server to read them and return
69-
its response. Again gRPC guarantees message ordering.
69+
its response. Again gRPC guarantees message ordering within an individual RPC
70+
call.
7071

7172
```
7273
rpc LotsOfGreetings(stream HelloRequest) returns (HelloResponse) {

0 commit comments

Comments
 (0)