aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services.rb
blob: 9f6e7e0e427759f20638a14036254250bae0db52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# Source: src/proto/grpc/testing/duplicate/echo_duplicate.proto for package 'grpc.testing.duplicate'

require 'grpc'
require 'src/proto/grpc/testing/duplicate/echo_duplicate'

module Grpc
  module Testing
    module Duplicate
      module EchoTestService

        # TODO: add proto service documentation here
        class Service

          include GRPC::GenericService

          self.marshal_class_method = :encode
          self.unmarshal_class_method = :decode
          self.service_name = 'grpc.testing.duplicate.EchoTestService'

          rpc :Echo, Grpc::Testing::EchoRequest, Grpc::Testing::EchoResponse
        end

        Stub = Service.rpc_stub_class
      end
    end
  end
end