grpc-java/examples
Eric Anderson b752e76858 Automated readability/efficiency tweaks
Although the changes were determined automatically, they were manually
applied to the codebase.

ClientCalls actually has a bug fix, since the suggestion to add
interrupt() made it obvious that interrupted() was inappropriate.
2016-02-16 14:15:23 -08:00
..
android Upgrade to protobuf-3.0.0-beta-2 and protobuf-nano-3.0.0-alpha-5 2016-01-27 23:32:01 -08:00
src Automated readability/efficiency tweaks 2016-02-16 14:15:23 -08:00
README.md Replace broken link in example 2015-09-28 14:43:36 -07:00
build.gradle Help steer new users away from copying our build.gradle 2016-02-03 10:04:12 -08: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 gRPC Java's README and tutorial for more information.