grpc-java/examples
Xudong Ma 2016a88f5c Update the comments in proguard-rules files. 2015-09-17 18:17:32 -07:00
..
android Update the comments in proguard-rules files. 2015-09-17 18:17:32 -07:00
protos add back protos and update references 2015-08-27 16:24:04 -07:00
src Enforce sending headers before messages on server 2015-09-11 17:39:40 -07:00
README.md Fix broken tutorial link. 2015-09-14 09:18:06 -07:00
build.gradle Add an example compressing client 2015-09-08 13:06:25 -07:00

README.md

grpc Examples

To build the examples, run in this directory:

$ ../gradlew installDist -PskipCodegen=true

This creates the scripts hello-world-server, hello-world-client, route-guide-server, and route-guide-client in the build/install/grpc-examples/bin/ directory that run the examples. Each example requires the server to be running before starting the client.

For example, to try the hello world example first run:

$ ./build/install/grpc-examples/bin/hello-world-server

And in a different terminal window run:

$ ./build/install/grpc-examples/bin/hello-world-client

That's it!

Please refer to Getting Started Guide for Java for more information.