aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/qps/src/proto/grpc/testing/services_services.rb
blob: 3fd9f20f4729d4621bed7d4325bb8aa7760df8f7 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# Source: src/proto/grpc/testing/services.proto for package 'grpc.testing'

require 'grpc'
require 'src/proto/grpc/testing/services'

module Grpc
  module Testing
    module BenchmarkService

      # 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.BenchmarkService'

        rpc :UnaryCall, SimpleRequest, SimpleResponse
        rpc :StreamingCall, stream(SimpleRequest), stream(SimpleResponse)
      end

      Stub = Service.rpc_stub_class
    end
    module WorkerService

      # 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.WorkerService'

        rpc :RunServer, stream(ServerArgs), stream(ServerStatus)
        rpc :RunClient, stream(ClientArgs), stream(ClientStatus)
        rpc :CoreCount, CoreRequest, CoreResponse
        rpc :QuitWorker, Void, Void
      end

      Stub = Service.rpc_stub_class
    end
  end
end