File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Sources/GRPCCore/Documentation.docc/Development Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,8 @@ the task abruptly closes the stream, although the transport should ensure that
75
75
doing this doesn't leave the other side waiting indefinitely.
76
76
77
77
gRPC has mechanisms to deliver method-specific configuration at the transport
78
- layer which can also change dynamically (see "gRFC A2: ServiceConfig in DNS".)
78
+ layer which can also change dynamically (see [ gRFC A2: ServiceConfig in
79
+ DNS] ( https://github.com/grpc/proposal/blob/master/A2-service-configs-in-dns.md ) .)
79
80
This configuration is used to determine how clients should interact with servers
80
81
and how methods should be executed, such as the conditions under which they
81
82
may be retried. Some of this is exposed via the `` ClientTransport `` as
@@ -185,7 +186,7 @@ a ``GRPCServer/serve()`` method which runs the underlying transport and is the
185
186
task from which all accepted streams are run under. Much like the client, you
186
187
can initiate graceful shutdown by calling `` GRPCServer/beginGracefulShutdown() ``
187
188
which will stop new RPCs from being handled but will let existing RPCs run to
188
- completion.
189
+ completion. Cancelling the task will close the server more abruptly.
189
190
190
191
## Stub
191
192
You can’t perform that action at this time.
0 commit comments