File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,9 @@ combination of the supported languages.
9
9
10
10
## Interface
11
11
12
- Developers using gRPC start with the description of an RPC service (a collection
13
- of methods), and generate client and server side interfaces. The server implements
12
+ Developers using gRPC start with a language agnostic description of an RPC service (a collection
13
+ of methods). From this description, gRPC will generate client and server side interfaces
14
+ in any of the supported languages. The server implements
14
15
the service interface, which can be remotely invoked by the client interface.
15
16
16
17
By default, gRPC uses [ Protocol Buffers] ( https://github.com/google/protobuf ) as the
@@ -41,7 +42,7 @@ asynchronous flavors.
41
42
42
43
gRPC supports streaming semantics, where either the client or the server (or both)
43
44
send a stream of messages on a single RPC call. The most general case is
44
- Bidirectional Streaming where a single gRPC call establishes a stream where both
45
+ Bidirectional Streaming where a single gRPC call establishes a stream in which both
45
46
the client and the server can send a stream of messages to each other. The streamed
46
47
messages are delivered in the order they were sent.
47
48
You can’t perform that action at this time.
0 commit comments