mirror of https://github.com/grpc/grpc-java.git
'nano=true' still works, but any value is now ignored. This is to align with our lite flag, but also just because It's Cleaner. Note that this is counter to what javanano does. Javanano requires all flags have a value and uses true/false for many values. |
||
|---|---|---|
| .. | ||
| android | ||
| src | ||
| README.md | ||
| build.gradle | ||
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.