mirror of https://github.com/grpc/grpc.git
parent
9436767d20
commit
2cf333c197
2 changed files with 64 additions and 0 deletions
@ -0,0 +1,37 @@ |
||||
# Generated by the protocol buffer compiler. DO NOT EDIT! |
||||
# source: route_guide.proto |
||||
|
||||
require 'google/protobuf' |
||||
|
||||
Google::Protobuf::DescriptorPool.generated_pool.build do |
||||
add_message "examples.Point" do |
||||
optional :latitude, :int32, 1 |
||||
optional :longitude, :int32, 2 |
||||
end |
||||
add_message "examples.Rectangle" do |
||||
optional :lo, :message, 1, "examples.Point" |
||||
optional :hi, :message, 2, "examples.Point" |
||||
end |
||||
add_message "examples.Feature" do |
||||
optional :name, :string, 1 |
||||
optional :location, :message, 2, "examples.Point" |
||||
end |
||||
add_message "examples.RouteNote" do |
||||
optional :location, :message, 1, "examples.Point" |
||||
optional :message, :string, 2 |
||||
end |
||||
add_message "examples.RouteSummary" do |
||||
optional :point_count, :int32, 1 |
||||
optional :feature_count, :int32, 2 |
||||
optional :distance, :int32, 3 |
||||
optional :elapsed_time, :int32, 4 |
||||
end |
||||
end |
||||
|
||||
module Examples |
||||
Point = Google::Protobuf::DescriptorPool.generated_pool.lookup("examples.Point").msgclass |
||||
Rectangle = Google::Protobuf::DescriptorPool.generated_pool.lookup("examples.Rectangle").msgclass |
||||
Feature = Google::Protobuf::DescriptorPool.generated_pool.lookup("examples.Feature").msgclass |
||||
RouteNote = Google::Protobuf::DescriptorPool.generated_pool.lookup("examples.RouteNote").msgclass |
||||
RouteSummary = Google::Protobuf::DescriptorPool.generated_pool.lookup("examples.RouteSummary").msgclass |
||||
end |
@ -0,0 +1,27 @@ |
||||
# Generated by the protocol buffer compiler. DO NOT EDIT! |
||||
# Source: route_guide.proto for package 'examples' |
||||
|
||||
require 'grpc' |
||||
require 'route_guide' |
||||
|
||||
module Examples |
||||
module RouteGuide |
||||
|
||||
# TODO: add proto service documentation here |
||||
class Service |
||||
|
||||
include GRPC::GenericService |
||||
|
||||
self.marshal_class_method = :encode |
||||
self.unmarshal_class_method = :decode |
||||
self.service_name = 'examples.RouteGuide' |
||||
|
||||
rpc :GetFeature, Point, Feature |
||||
rpc :ListFeatures, Rectangle, stream(Feature) |
||||
rpc :RecordRoute, stream(Point), RouteSummary |
||||
rpc :RouteChat, stream(RouteNote), stream(RouteNote) |
||||
end |
||||
|
||||
Stub = Service.rpc_stub_class |
||||
end |
||||
end |
Loading…
Reference in new issue