Markdown, I hate you.

This commit is contained in:
Lisa Carey 2015-02-13 11:05:25 +00:00
parent 2fdb96388f
commit 034eb2e809
1 changed files with 3 additions and 2 deletions

View File

@ -266,6 +266,7 @@ As you can see, the class `GreetingsImpl` implements the interface
a special interface for the server to call with its response a special interface for the server to call with its response
To return our response to the client and complete the call: To return our response to the client and complete the call:
1. We construct and populate a `HelloReply` response object with our exciting 1. We construct and populate a `HelloReply` response object with our exciting
message, as specified in our interface definition. message, as specified in our interface definition.
2. We call `responseObserver.onValue()` with the `HelloReply` that we want to send back to the client. 2. We call `responseObserver.onValue()` with the `HelloReply` that we want to send back to the client.