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

Commit f1bd02a

Browse files
Merge pull request #766 from alexlo03/guarantees-order
gRPC guarantees the order of streaming messages
2 parents 569af7e + f77d95a commit f1bd02a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/guides/concepts.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ rpc SayHello(HelloRequest) returns (HelloResponse){
5555

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
58-
returned stream until there are no more messages.
58+
returned stream until there are no more messages. gRPC guarantees message
59+
ordering within an individual RPC call.
5960

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

7072
```
7173
rpc LotsOfGreetings(stream HelloRequest) returns (HelloResponse) {

0 commit comments

Comments
 (0)