1# Generated by the protocol buffer compiler. DO NOT EDIT! 2# Source: math.proto for package 'math' 3# Original file comments: 4# Copyright 2015 gRPC authors. 5# 6# Licensed under the Apache License, Version 2.0 (the "License"); 7# you may not use this file except in compliance with the License. 8# You may obtain a copy of the License at 9# 10# http://www.apache.org/licenses/LICENSE-2.0 11# 12# Unless required by applicable law or agreed to in writing, software 13# distributed under the License is distributed on an "AS IS" BASIS, 14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15# See the License for the specific language governing permissions and 16# limitations under the License. 17# 18 19require 'grpc' 20require 'math_pb' 21 22module Math 23 module Math 24 class Service 25 26 include GRPC::GenericService 27 28 self.marshal_class_method = :encode 29 self.unmarshal_class_method = :decode 30 self.service_name = 'math.Math' 31 32 # Div divides DivArgs.dividend by DivArgs.divisor and returns the quotient 33 # and remainder. 34 rpc :Div, DivArgs, DivReply 35 # DivMany accepts an arbitrary number of division args from the client stream 36 # and sends back the results in the reply stream. The stream continues until 37 # the client closes its end; the server does the same after sending all the 38 # replies. The stream ends immediately if either end aborts. 39 rpc :DivMany, stream(DivArgs), stream(DivReply) 40 # Fib generates numbers in the Fibonacci sequence. If FibArgs.limit > 0, Fib 41 # generates up to limit numbers; otherwise it continues until the call is 42 # canceled. Unlike Fib above, Fib has no final FibReply. 43 rpc :Fib, FibArgs, stream(Num) 44 # Sum sums a stream of numbers, returning the final result once the stream 45 # is closed. 46 rpc :Sum, stream(Num), Num 47 end 48 49 Stub = Service.rpc_stub_class 50 end 51end 52