# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! import grpc from ...facility.level0 import level0_pb2 as facility_dot_level0_dot_level0__pb2 class Level0SrvStub(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.facility.level0.Level0Srv/Find', request_serializer=facility_dot_level0_dot_level0__pb2.FindLevel0DataReq.SerializeToString, response_deserializer=facility_dot_level0_dot_level0__pb2.FindLevel0DataResp.FromString, ) self.Get = channel.unary_unary( '/dfs.facility.level0.Level0Srv/Get', request_serializer=facility_dot_level0_dot_level0__pb2.GetLevel0DataReq.SerializeToString, response_deserializer=facility_dot_level0_dot_level0__pb2.GetLevel0DataResp.FromString, ) self.Write = channel.unary_unary( '/dfs.facility.level0.Level0Srv/Write', request_serializer=facility_dot_level0_dot_level0__pb2.WriteLevel0DataReq.SerializeToString, response_deserializer=facility_dot_level0_dot_level0__pb2.WriteLevel0DataResp.FromString, ) self.UpdateQc0Status = channel.unary_unary( '/dfs.facility.level0.Level0Srv/UpdateQc0Status', request_serializer=facility_dot_level0_dot_level0__pb2.UpdateQc0StatusReq.SerializeToString, response_deserializer=facility_dot_level0_dot_level0__pb2.UpdateQc0StatusResp.FromString, ) self.UpdateProcStatus = channel.unary_unary( '/dfs.facility.level0.Level0Srv/UpdateProcStatus', request_serializer=facility_dot_level0_dot_level0__pb2.UpdateProcStatusReq.SerializeToString, response_deserializer=facility_dot_level0_dot_level0__pb2.UpdateProcStatusResp.FromString, ) class Level0SrvServicer(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 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, 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 UpdateQc0Status(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!') def add_Level0SrvServicer_to_server(servicer, server): rpc_method_handlers = { 'Find': grpc.unary_unary_rpc_method_handler( servicer.Find, request_deserializer=facility_dot_level0_dot_level0__pb2.FindLevel0DataReq.FromString, response_serializer=facility_dot_level0_dot_level0__pb2.FindLevel0DataResp.SerializeToString, ), 'Get': grpc.unary_unary_rpc_method_handler( servicer.Get, request_deserializer=facility_dot_level0_dot_level0__pb2.GetLevel0DataReq.FromString, response_serializer=facility_dot_level0_dot_level0__pb2.GetLevel0DataResp.SerializeToString, ), 'Write': grpc.unary_unary_rpc_method_handler( servicer.Write, request_deserializer=facility_dot_level0_dot_level0__pb2.WriteLevel0DataReq.FromString, response_serializer=facility_dot_level0_dot_level0__pb2.WriteLevel0DataResp.SerializeToString, ), 'UpdateQc0Status': grpc.unary_unary_rpc_method_handler( servicer.UpdateQc0Status, request_deserializer=facility_dot_level0_dot_level0__pb2.UpdateQc0StatusReq.FromString, response_serializer=facility_dot_level0_dot_level0__pb2.UpdateQc0StatusResp.SerializeToString, ), 'UpdateProcStatus': grpc.unary_unary_rpc_method_handler( servicer.UpdateProcStatus, request_deserializer=facility_dot_level0_dot_level0__pb2.UpdateProcStatusReq.FromString, response_serializer=facility_dot_level0_dot_level0__pb2.UpdateProcStatusResp.SerializeToString, ), } generic_handler = grpc.method_handlers_generic_handler( 'dfs.facility.level0.Level0Srv', rpc_method_handlers) server.add_generic_rpc_handlers((generic_handler,))