Coverage for /Users/eugene/Development/legion-utils/legion_utils/checkin_pb2_grpc.py: 0%
19 statements
« prev ^ index » next coverage.py v7.3.2, created at 2023-11-01 20:15 -0400
« prev ^ index » next coverage.py v7.3.2, created at 2023-11-01 20:15 -0400
1# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2"""Client and server classes corresponding to protobuf-defined services."""
3import grpc
5import checkin_pb2 as checkin__pb2
8class PrincepsStub(object):
9 """Missing associated documentation comment in .proto file."""
11 def __init__(self, channel):
12 """Constructor.
14 Args:
15 channel: A grpc.Channel.
16 """
17 self.CheckIn = channel.unary_unary(
18 '/Princeps/CheckIn',
19 request_serializer=checkin__pb2.CheckInRequest.SerializeToString,
20 response_deserializer=checkin__pb2.CheckInRequest.FromString,
21 )
24class PrincepsServicer(object):
25 """Missing associated documentation comment in .proto file."""
27 def CheckIn(self, request, context):
28 """Missing associated documentation comment in .proto file."""
29 context.set_code(grpc.StatusCode.UNIMPLEMENTED)
30 context.set_details('Method not implemented!')
31 raise NotImplementedError('Method not implemented!')
34def add_PrincepsServicer_to_server(servicer, server):
35 rpc_method_handlers = {
36 'CheckIn': grpc.unary_unary_rpc_method_handler(
37 servicer.CheckIn,
38 request_deserializer=checkin__pb2.CheckInRequest.FromString,
39 response_serializer=checkin__pb2.CheckInRequest.SerializeToString,
40 ),
41 }
42 generic_handler = grpc.method_handlers_generic_handler(
43 'Princeps', rpc_method_handlers)
44 server.add_generic_rpc_handlers((generic_handler,))
47 # This class is part of an EXPERIMENTAL API.
48class Princeps(object):
49 """Missing associated documentation comment in .proto file."""
51 @staticmethod
52 def CheckIn(request,
53 target,
54 options=(),
55 channel_credentials=None,
56 call_credentials=None,
57 insecure=False,
58 compression=None,
59 wait_for_ready=None,
60 timeout=None,
61 metadata=None):
62 return grpc.experimental.unary_unary(request, target, '/Princeps/CheckIn',
63 checkin__pb2.CheckInRequest.SerializeToString,
64 checkin__pb2.CheckInRequest.FromString,
65 options, channel_credentials,
66 insecure, call_credentials, compression, wait_for_ready, timeout, metadata)