# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! """Client and server classes corresponding to protobuf-defined services.""" import grpc from . import datastore_pb2 as datastore__pb2 class DatastoreServiceStub(object): """Missing associated documentation comment in .proto file.""" def __init__(self, channel): """Constructor. Args: channel: A grpc.Channel. """ self.Get = channel.unary_unary( '/datastore.DatastoreService/Get', request_serializer=datastore__pb2.KeyMessage.SerializeToString, response_deserializer=datastore__pb2.ObjectResponse.FromString, ) self.Update = channel.unary_unary( '/datastore.DatastoreService/Update', request_serializer=datastore__pb2.UpdateMessage.SerializeToString, response_deserializer=datastore__pb2.ObjectResponse.FromString, ) self.Delete = channel.unary_unary( '/datastore.DatastoreService/Delete', request_serializer=datastore__pb2.KeyMessage.SerializeToString, response_deserializer=datastore__pb2.NullResponse.FromString, ) class DatastoreServiceServicer(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 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 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 add_DatastoreServiceServicer_to_server(servicer, server): rpc_method_handlers = { 'Get': grpc.unary_unary_rpc_method_handler( servicer.Get, request_deserializer=datastore__pb2.KeyMessage.FromString, response_serializer=datastore__pb2.ObjectResponse.SerializeToString, ), 'Update': grpc.unary_unary_rpc_method_handler( servicer.Update, request_deserializer=datastore__pb2.UpdateMessage.FromString, response_serializer=datastore__pb2.ObjectResponse.SerializeToString, ), 'Delete': grpc.unary_unary_rpc_method_handler( servicer.Delete, request_deserializer=datastore__pb2.KeyMessage.FromString, response_serializer=datastore__pb2.NullResponse.SerializeToString, ), } generic_handler = grpc.method_handlers_generic_handler( 'datastore.DatastoreService', rpc_method_handlers) server.add_generic_rpc_handlers((generic_handler,)) # This class is part of an EXPERIMENTAL API. class DatastoreService(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, '/datastore.DatastoreService/Get', datastore__pb2.KeyMessage.SerializeToString, datastore__pb2.ObjectResponse.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, '/datastore.DatastoreService/Update', datastore__pb2.UpdateMessage.SerializeToString, datastore__pb2.ObjectResponse.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, '/datastore.DatastoreService/Delete', datastore__pb2.KeyMessage.SerializeToString, datastore__pb2.NullResponse.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata)