Add helloworld tests with gRPC

This commit is contained in:
SALLEYRON Julien 2017-08-06 11:55:42 +02:00 committed by Ludovic Fernandez
parent 8071f31721
commit 990ee89650
8 changed files with 370 additions and 0 deletions

View file

@ -0,0 +1,23 @@
syntax = "proto3";
option java_multiple_files = true;
option java_package = "io.grpc.examples.helloworld";
option java_outer_classname = "HelloWorldProto";
package helloworld;
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}