# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc

import times_pb2 as times__pb2


class TimesServiceStub(object):
    """Missing associated documentation comment in .proto file."""

    def __init__(self, channel):
        """Constructor.

        Args:
            channel: A grpc.Channel.
        """
        self.Create = channel.unary_unary(
                '/times.TimesService/Create',
                request_serializer=times__pb2.TimeRequest.SerializeToString,
                response_deserializer=times__pb2.IdMessage.FromString,
                )
        self.Update = channel.unary_unary(
                '/times.TimesService/Update',
                request_serializer=times__pb2.TimeRequest.SerializeToString,
                response_deserializer=times__pb2.NullResponse.FromString,
                )
        self.Delete = channel.unary_unary(
                '/times.TimesService/Delete',
                request_serializer=times__pb2.IdMessage.SerializeToString,
                response_deserializer=times__pb2.NullResponse.FromString,
                )
        self.Get = channel.unary_unary(
                '/times.TimesService/Get',
                request_serializer=times__pb2.IdMessage.SerializeToString,
                response_deserializer=times__pb2.TimeResponse.FromString,
                )
        self.List = channel.unary_unary(
                '/times.TimesService/List',
                request_serializer=times__pb2.ListRequest.SerializeToString,
                response_deserializer=times__pb2.TimeList.FromString,
                )
        self.Rank = channel.unary_unary(
                '/times.TimesService/Rank',
                request_serializer=times__pb2.IdMessage.SerializeToString,
                response_deserializer=times__pb2.RankResponse.FromString,
                )


class TimesServiceServicer(object):
    """Missing associated documentation comment in .proto file."""

    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 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 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 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 Rank(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_TimesServiceServicer_to_server(servicer, server):
    rpc_method_handlers = {
            'Create': grpc.unary_unary_rpc_method_handler(
                    servicer.Create,
                    request_deserializer=times__pb2.TimeRequest.FromString,
                    response_serializer=times__pb2.IdMessage.SerializeToString,
            ),
            'Update': grpc.unary_unary_rpc_method_handler(
                    servicer.Update,
                    request_deserializer=times__pb2.TimeRequest.FromString,
                    response_serializer=times__pb2.NullResponse.SerializeToString,
            ),
            'Delete': grpc.unary_unary_rpc_method_handler(
                    servicer.Delete,
                    request_deserializer=times__pb2.IdMessage.FromString,
                    response_serializer=times__pb2.NullResponse.SerializeToString,
            ),
            'Get': grpc.unary_unary_rpc_method_handler(
                    servicer.Get,
                    request_deserializer=times__pb2.IdMessage.FromString,
                    response_serializer=times__pb2.TimeResponse.SerializeToString,
            ),
            'List': grpc.unary_unary_rpc_method_handler(
                    servicer.List,
                    request_deserializer=times__pb2.ListRequest.FromString,
                    response_serializer=times__pb2.TimeList.SerializeToString,
            ),
            'Rank': grpc.unary_unary_rpc_method_handler(
                    servicer.Rank,
                    request_deserializer=times__pb2.IdMessage.FromString,
                    response_serializer=times__pb2.RankResponse.SerializeToString,
            ),
    }
    generic_handler = grpc.method_handlers_generic_handler(
            'times.TimesService', rpc_method_handlers)
    server.add_generic_rpc_handlers((generic_handler,))


 # This class is part of an EXPERIMENTAL API.
class TimesService(object):
    """Missing associated documentation comment in .proto file."""

    @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, '/times.TimesService/Create',
            times__pb2.TimeRequest.SerializeToString,
            times__pb2.IdMessage.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, '/times.TimesService/Update',
            times__pb2.TimeRequest.SerializeToString,
            times__pb2.NullResponse.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, '/times.TimesService/Delete',
            times__pb2.IdMessage.SerializeToString,
            times__pb2.NullResponse.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)

    @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, '/times.TimesService/Get',
            times__pb2.IdMessage.SerializeToString,
            times__pb2.TimeResponse.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, '/times.TimesService/List',
            times__pb2.ListRequest.SerializeToString,
            times__pb2.TimeList.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)

    @staticmethod
    def Rank(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, '/times.TimesService/Rank',
            times__pb2.IdMessage.SerializeToString,
            times__pb2.RankResponse.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)