grpc-java/examples
nmittler b687bdc742 Refactoring channel API.
Client:
* New ManagedChannel abstract class.
* Adding ping to Channel.
* Moving builders and implementations to internal.

Server:
* Added lifecycle management API to Server (mirroring ManagedChannel).
* Moved ServerImpl, AbstractServerBuilder and handler registries to internal.
* New ServerBuilder abstract class (mirroring ManagedChannelBuilder).

Fixes #545
2015-09-03 11:22:29 -07:00
..
android Refactoring channel API. 2015-09-03 11:22:29 -07:00
protos add back protos and update references 2015-08-27 16:24:04 -07:00
src Refactoring channel API. 2015-09-03 11:22:29 -07:00
README.md update reference to grpc-common to examples 2015-08-27 16:10:33 -07:00
build.gradle Fix generated code reference for intellij projects. 2015-09-02 14:18:31 -07:00
javatutorial.md update reference to grpc-common to examples 2015-08-27 16:10:33 -07:00

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.