# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! import grpc from . import level0prc_pb2 as ifs_dot_level0prc_dot_level0prc__pb2 class Level0PrcSrvStub(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.ifs.level0prc.Level0PrcSrv/Find', request_serializer=ifs_dot_level0prc_dot_level0prc__pb2.FindLevel0PrcReq.SerializeToString, response_deserializer=ifs_dot_level0prc_dot_level0prc__pb2.FindLevel0PrcResp.FromString, ) self.Write = channel.unary_unary( '/dfs.ifs.level0prc.Level0PrcSrv/Write', request_serializer=ifs_dot_level0prc_dot_level0prc__pb2.WriteLevel0PrcReq.SerializeToString, response_deserializer=ifs_dot_level0prc_dot_level0prc__pb2.WriteLevel0PrcResp.FromString, ) self.UpdateProcStatus = channel.unary_unary( '/dfs.ifs.level0prc.Level0PrcSrv/UpdateProcStatus', request_serializer=ifs_dot_level0prc_dot_level0prc__pb2.UpdateProcStatusReq.SerializeToString, response_deserializer=ifs_dot_level0prc_dot_level0prc__pb2.UpdateProcStatusResp.FromString, ) class Level0PrcSrvServicer(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 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 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_Level0PrcSrvServicer_to_server(servicer, server): rpc_method_handlers = { 'Find': grpc.unary_unary_rpc_method_handler( servicer.Find, request_deserializer=ifs_dot_level0prc_dot_level0prc__pb2.FindLevel0PrcReq.FromString, response_serializer=ifs_dot_level0prc_dot_level0prc__pb2.FindLevel0PrcResp.SerializeToString, ), 'Write': grpc.unary_unary_rpc_method_handler( servicer.Write, request_deserializer=ifs_dot_level0prc_dot_level0prc__pb2.WriteLevel0PrcReq.FromString, response_serializer=ifs_dot_level0prc_dot_level0prc__pb2.WriteLevel0PrcResp.SerializeToString, ), 'UpdateProcStatus': grpc.unary_unary_rpc_method_handler( servicer.UpdateProcStatus, request_deserializer=ifs_dot_level0prc_dot_level0prc__pb2.UpdateProcStatusReq.FromString, response_serializer=ifs_dot_level0prc_dot_level0prc__pb2.UpdateProcStatusResp.SerializeToString, ), } generic_handler = grpc.method_handlers_generic_handler( 'dfs.ifs.level0prc.Level0PrcSrv', rpc_method_handlers) server.add_generic_rpc_handlers((generic_handler,))