Files
ResInsight/docs/rips/generated/Project_pb2_grpc.py

134 lines
5.4 KiB
Python
Raw Normal View History

2020-03-20 19:01:04 +01:00
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
import grpc
import Case_pb2 as Case__pb2
import Definitions_pb2 as Definitions__pb2
import PdmObject_pb2 as PdmObject__pb2
class ProjectStub(object):
# missing associated documentation comment in .proto file
pass
2020-03-20 19:01:04 +01:00
def __init__(self, channel):
"""Constructor.
2020-03-20 19:01:04 +01:00
Args:
channel: A grpc.Channel.
"""
self.GetCurrentCase = channel.unary_unary(
'/rips.Project/GetCurrentCase',
request_serializer=Definitions__pb2.Empty.SerializeToString,
response_deserializer=Case__pb2.CaseRequest.FromString,
2020-03-20 19:01:04 +01:00
)
self.GetSelectedCases = channel.unary_unary(
'/rips.Project/GetSelectedCases',
request_serializer=Definitions__pb2.Empty.SerializeToString,
response_deserializer=Case__pb2.CaseInfoArray.FromString,
2020-03-20 19:01:04 +01:00
)
self.GetAllCaseGroups = channel.unary_unary(
'/rips.Project/GetAllCaseGroups',
request_serializer=Definitions__pb2.Empty.SerializeToString,
response_deserializer=Case__pb2.CaseGroups.FromString,
2020-03-20 19:01:04 +01:00
)
self.GetAllCases = channel.unary_unary(
'/rips.Project/GetAllCases',
request_serializer=Definitions__pb2.Empty.SerializeToString,
response_deserializer=Case__pb2.CaseInfoArray.FromString,
2020-03-20 19:01:04 +01:00
)
self.GetCasesInGroup = channel.unary_unary(
'/rips.Project/GetCasesInGroup',
request_serializer=Case__pb2.CaseGroup.SerializeToString,
response_deserializer=Case__pb2.CaseInfoArray.FromString,
2020-03-20 19:01:04 +01:00
)
self.GetPdmObject = channel.unary_unary(
'/rips.Project/GetPdmObject',
request_serializer=Definitions__pb2.Empty.SerializeToString,
response_deserializer=PdmObject__pb2.PdmObject.FromString,
2020-03-20 19:01:04 +01:00
)
class ProjectServicer(object):
# missing associated documentation comment in .proto file
pass
def GetCurrentCase(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!')
2020-03-20 19:01:04 +01:00
def GetSelectedCases(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!')
2020-03-20 19:01:04 +01:00
def GetAllCaseGroups(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!')
2020-03-20 19:01:04 +01:00
def GetAllCases(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!')
2020-03-20 19:01:04 +01:00
def GetCasesInGroup(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 GetPdmObject(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!')
2020-03-20 19:01:04 +01:00
def add_ProjectServicer_to_server(servicer, server):
rpc_method_handlers = {
'GetCurrentCase': grpc.unary_unary_rpc_method_handler(
servicer.GetCurrentCase,
request_deserializer=Definitions__pb2.Empty.FromString,
response_serializer=Case__pb2.CaseRequest.SerializeToString,
),
'GetSelectedCases': grpc.unary_unary_rpc_method_handler(
servicer.GetSelectedCases,
request_deserializer=Definitions__pb2.Empty.FromString,
response_serializer=Case__pb2.CaseInfoArray.SerializeToString,
),
'GetAllCaseGroups': grpc.unary_unary_rpc_method_handler(
servicer.GetAllCaseGroups,
request_deserializer=Definitions__pb2.Empty.FromString,
response_serializer=Case__pb2.CaseGroups.SerializeToString,
),
'GetAllCases': grpc.unary_unary_rpc_method_handler(
servicer.GetAllCases,
request_deserializer=Definitions__pb2.Empty.FromString,
response_serializer=Case__pb2.CaseInfoArray.SerializeToString,
),
'GetCasesInGroup': grpc.unary_unary_rpc_method_handler(
servicer.GetCasesInGroup,
request_deserializer=Case__pb2.CaseGroup.FromString,
response_serializer=Case__pb2.CaseInfoArray.SerializeToString,
),
'GetPdmObject': grpc.unary_unary_rpc_method_handler(
servicer.GetPdmObject,
request_deserializer=Definitions__pb2.Empty.FromString,
response_serializer=PdmObject__pb2.PdmObject.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'rips.Project', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))