| Index: third_party/grpc/src/ruby/bin/math_services.rb
|
| diff --git a/third_party/grpc/src/ruby/bin/math_services.rb b/third_party/grpc/src/ruby/bin/math_services.rb
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2d482129c2afa1dca6d4962951d2f26aebc63c58
|
| --- /dev/null
|
| +++ b/third_party/grpc/src/ruby/bin/math_services.rb
|
| @@ -0,0 +1,27 @@
|
| +# Generated by the protocol buffer compiler. DO NOT EDIT!
|
| +# Source: math.proto for package 'math'
|
| +
|
| +require 'grpc'
|
| +require 'math'
|
| +
|
| +module Math
|
| + module Math
|
| +
|
| + # TODO: add proto service documentation here
|
| + class Service
|
| +
|
| + include GRPC::GenericService
|
| +
|
| + self.marshal_class_method = :encode
|
| + self.unmarshal_class_method = :decode
|
| + self.service_name = 'math.Math'
|
| +
|
| + rpc :Div, DivArgs, DivReply
|
| + rpc :DivMany, stream(DivArgs), stream(DivReply)
|
| + rpc :Fib, FibArgs, stream(Num)
|
| + rpc :Sum, stream(Num), Num
|
| + end
|
| +
|
| + Stub = Service.rpc_stub_class
|
| + end
|
| +end
|
|
|