python-grpc/maps_pb2_grpc.py

232 lines
9.2 KiB
Python
Raw Normal View History

# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc
import maps_pb2 as maps__pb2
class MapsServiceStub(object):
"""Missing associated documentation comment in .proto file."""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.Get = channel.unary_unary(
'/maps.MapsService/Get',
request_serializer=maps__pb2.IdMessage.SerializeToString,
response_deserializer=maps__pb2.MapResponse.FromString,
)
self.GetList = channel.unary_unary(
'/maps.MapsService/GetList',
request_serializer=maps__pb2.IdList.SerializeToString,
response_deserializer=maps__pb2.MapList.FromString,
)
self.Update = channel.unary_unary(
'/maps.MapsService/Update',
request_serializer=maps__pb2.MapRequest.SerializeToString,
response_deserializer=maps__pb2.NullResponse.FromString,
)
self.Create = channel.unary_unary(
'/maps.MapsService/Create',
request_serializer=maps__pb2.MapRequest.SerializeToString,
response_deserializer=maps__pb2.IdMessage.FromString,
)
self.Delete = channel.unary_unary(
'/maps.MapsService/Delete',
request_serializer=maps__pb2.IdMessage.SerializeToString,
response_deserializer=maps__pb2.NullResponse.FromString,
)
self.List = channel.unary_unary(
'/maps.MapsService/List',
request_serializer=maps__pb2.ListRequest.SerializeToString,
response_deserializer=maps__pb2.MapList.FromString,
)
class MapsServiceServicer(object):
"""Missing associated documentation comment in .proto file."""
def Get(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def GetList(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def Update(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def Create(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def Delete(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def List(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def add_MapsServiceServicer_to_server(servicer, server):
rpc_method_handlers = {
'Get': grpc.unary_unary_rpc_method_handler(
servicer.Get,
request_deserializer=maps__pb2.IdMessage.FromString,
response_serializer=maps__pb2.MapResponse.SerializeToString,
),
'GetList': grpc.unary_unary_rpc_method_handler(
servicer.GetList,
request_deserializer=maps__pb2.IdList.FromString,
response_serializer=maps__pb2.MapList.SerializeToString,
),
'Update': grpc.unary_unary_rpc_method_handler(
servicer.Update,
request_deserializer=maps__pb2.MapRequest.FromString,
response_serializer=maps__pb2.NullResponse.SerializeToString,
),
'Create': grpc.unary_unary_rpc_method_handler(
servicer.Create,
request_deserializer=maps__pb2.MapRequest.FromString,
response_serializer=maps__pb2.IdMessage.SerializeToString,
),
'Delete': grpc.unary_unary_rpc_method_handler(
servicer.Delete,
request_deserializer=maps__pb2.IdMessage.FromString,
response_serializer=maps__pb2.NullResponse.SerializeToString,
),
'List': grpc.unary_unary_rpc_method_handler(
servicer.List,
request_deserializer=maps__pb2.ListRequest.FromString,
response_serializer=maps__pb2.MapList.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'maps.MapsService', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
# This class is part of an EXPERIMENTAL API.
class MapsService(object):
"""Missing associated documentation comment in .proto file."""
@staticmethod
def Get(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/maps.MapsService/Get',
maps__pb2.IdMessage.SerializeToString,
maps__pb2.MapResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def GetList(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/maps.MapsService/GetList',
maps__pb2.IdList.SerializeToString,
maps__pb2.MapList.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def Update(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/maps.MapsService/Update',
maps__pb2.MapRequest.SerializeToString,
maps__pb2.NullResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def Create(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/maps.MapsService/Create',
maps__pb2.MapRequest.SerializeToString,
maps__pb2.IdMessage.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def Delete(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/maps.MapsService/Delete',
maps__pb2.IdMessage.SerializeToString,
maps__pb2.NullResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def List(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/maps.MapsService/List',
maps__pb2.ListRequest.SerializeToString,
maps__pb2.MapList.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)