tree: 01511381766b66f6c77c4b3b465ac8cd37c4c80d [path history] [tgz]
  1. android/
  2. protos/
  3. src/
  4. build.gradle
  5. javatutorial.md
  6. README.md
examples/README.md

grpc Examples

To build the examples, run in this directory:

$ ../gradlew installDist

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.