level2_pb2_grpc.py 6.55 KB
Newer Older
Wei Shoulin's avatar
Wei Shoulin committed
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
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
import grpc

from . import level2_pb2 as msc_dot_level2_dot_level2__pb2


class Level2SrvStub(object):
  # missing associated documentation comment in .proto file
  pass

  def __init__(self, channel):
    """Constructor.

    Args:
      channel: A grpc.Channel.
    """
    self.Find = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/Find',
        request_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2Req.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2Resp.FromString,
        )
    self.FindCatalog = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/FindCatalog',
        request_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogResp.FromString,
        )
    self.Get = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/Get',
        request_serializer=msc_dot_level2_dot_level2__pb2.GetLevel2Req.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.GetLevel2Resp.FromString,
        )
    self.Write = channel.stream_unary(
        '/dfs.msc.level2.Level2Srv/Write',
        request_serializer=msc_dot_level2_dot_level2__pb2.WriteLevel2Req.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.WriteLevel2Resp.FromString,
Wei Shoulin's avatar
bugs    
Wei Shoulin committed
36
        )
Wei Shoulin's avatar
Wei Shoulin committed
37
38
39
40
41
42
43
44
45
46
    self.UpdateQc2Status = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/UpdateQc2Status',
        request_serializer=msc_dot_level2_dot_level2__pb2.UpdateQc2StatusReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.UpdateQc2StatusResp.FromString,
        )
    self.UpdateProcStatus = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/UpdateProcStatus',
        request_serializer=msc_dot_level2_dot_level2__pb2.UpdateProcStatusReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.UpdateProcStatusResp.FromString,
        )
Wei Shoulin's avatar
bugs    
Wei Shoulin committed
47
48
49
50
51
    self.DeleteCatalogByLevel2Id = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/DeleteCatalogByLevel2Id',
        request_serializer=msc_dot_level2_dot_level2__pb2.DeleteCatalogByLevel2IdReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.DeleteCatalogByLevel2IdResp.FromString,
        )
Wei Shoulin's avatar
Wei Shoulin committed
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99


class Level2SrvServicer(object):
  # missing associated documentation comment in .proto file
  pass

  def Find(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def FindCatalog(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def Get(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def Write(self, request_iterator, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def UpdateQc2Status(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def UpdateProcStatus(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

Wei Shoulin's avatar
bugs    
Wei Shoulin committed
100
101
102
103
104
105
106
  def DeleteCatalogByLevel2Id(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

Wei Shoulin's avatar
Wei Shoulin committed
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139

def add_Level2SrvServicer_to_server(servicer, server):
  rpc_method_handlers = {
      'Find': grpc.unary_unary_rpc_method_handler(
          servicer.Find,
          request_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2Req.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2Resp.SerializeToString,
      ),
      'FindCatalog': grpc.unary_unary_rpc_method_handler(
          servicer.FindCatalog,
          request_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogResp.SerializeToString,
      ),
      'Get': grpc.unary_unary_rpc_method_handler(
          servicer.Get,
          request_deserializer=msc_dot_level2_dot_level2__pb2.GetLevel2Req.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.GetLevel2Resp.SerializeToString,
      ),
      'Write': grpc.stream_unary_rpc_method_handler(
          servicer.Write,
          request_deserializer=msc_dot_level2_dot_level2__pb2.WriteLevel2Req.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.WriteLevel2Resp.SerializeToString,
      ),
      'UpdateQc2Status': grpc.unary_unary_rpc_method_handler(
          servicer.UpdateQc2Status,
          request_deserializer=msc_dot_level2_dot_level2__pb2.UpdateQc2StatusReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.UpdateQc2StatusResp.SerializeToString,
      ),
      'UpdateProcStatus': grpc.unary_unary_rpc_method_handler(
          servicer.UpdateProcStatus,
          request_deserializer=msc_dot_level2_dot_level2__pb2.UpdateProcStatusReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.UpdateProcStatusResp.SerializeToString,
      ),
Wei Shoulin's avatar
bugs    
Wei Shoulin committed
140
141
142
143
144
      'DeleteCatalogByLevel2Id': grpc.unary_unary_rpc_method_handler(
          servicer.DeleteCatalogByLevel2Id,
          request_deserializer=msc_dot_level2_dot_level2__pb2.DeleteCatalogByLevel2IdReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.DeleteCatalogByLevel2IdResp.SerializeToString,
      ),
Wei Shoulin's avatar
Wei Shoulin committed
145
146
147
148
  }
  generic_handler = grpc.method_handlers_generic_handler(
      'dfs.msc.level2.Level2Srv', rpc_method_handlers)
  server.add_generic_rpc_handlers((generic_handler,))