grpc-java/examples
Kun Zhang af18876713 Upgrade to com.google.protobuf:protobuf-gradle-plugin:0.1.0
Commit 76f0a09 after the previous release
(ws.antonov.gradle.plugins:gradle-plugin-protobuf:0.9.1) defers the
generation of generateProto tasks to post-evaluation of the project,
which make them no longer available in the evaluation phase. We need to
move the manipulation of these tasks to post-evaluation too.
2015-04-20 10:35:11 -07:00
..
src/main Remove Guava's Service from server transport 2015-04-16 11:28:04 -07:00
README.md Update README.md 2015-02-26 05:21:03 -08:00
build.gradle Upgrade to com.google.protobuf:protobuf-gradle-plugin:0.1.0 2015-04-20 10:35:11 -07:00

README.md

grpc Examples

In order to run the examples simply execute one of the gradle tasks routeGuideServer, routeGuideClient, helloWorldServer, or helloWorldClient.

For example, say you want to play around with the route guide examples. First you want to start the server and then have the client connect to it and let the good times roll.

Assuming you are in the grpc-java root folder you would first start the route guide server by running

$ ./gradlew :grpc-examples:routeGuideServer

and in a different terminal window then run the route guide client by typing

$ ./gradlew :grpc-examples:routeGuideClient

That's it!

Please refer to [Getting Started Guide for Java] (https://github.com/grpc/grpc-common/blob/master/java/javatutorial.md) for more information.