Sha256: c3140ceaa5e4bf78de5af5a2444d259b774c8f1150ab7eef3406d53fb00b3ba2

Contents?: true

Size: 1.07 KB

Versions: 45

Compression:

Stored size: 1.07 KB

Contents

// Copyright 2015 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

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;
}

Version data entries

45 entries across 45 versions & 2 rubygems

Version Path
grpc_kit-0.5.1 examples/helloworld/helloworld.proto
griffin-0.3.0 examples/helloworld/helloworld.proto
grpc_kit-0.5.0 examples/helloworld/helloworld.proto
grpc_kit-0.4.0 examples/helloworld/helloworld.proto
grpc_kit-0.3.9 examples/helloworld/helloworld.proto
griffin-0.2.4 examples/helloworld/helloworld.proto
grpc_kit-0.3.8 examples/helloworld/helloworld.proto
grpc_kit-0.3.7 examples/helloworld/helloworld.proto
griffin-0.2.3 examples/helloworld/helloworld.proto
grpc_kit-0.3.6 examples/helloworld/helloworld.proto
grpc_kit-0.3.5 examples/helloworld/helloworld.proto
griffin-0.2.2 examples/helloworld/helloworld.proto
grpc_kit-0.3.4 examples/helloworld/helloworld.proto
grpc_kit-0.3.3 examples/helloworld/helloworld.proto
grpc_kit-0.3.2 examples/helloworld/helloworld.proto
griffin-0.2.1 examples/helloworld/helloworld.proto
grpc_kit-0.3.1 examples/helloworld/helloworld.proto
griffin-0.2.0 examples/helloworld/helloworld.proto
grpc_kit-0.3.0 examples/helloworld/helloworld.proto
griffin-0.1.9 examples/helloworld/helloworld.proto