@@ -149,6 +149,11 @@ def __init__(self, channel):
149149 request_serializer = nifake__pb2 .MultipleArraysDifferentSizeRequest .SerializeToString ,
150150 response_deserializer = nifake__pb2 .MultipleArraysDifferentSizeResponse .FromString ,
151151 )
152+ self .MixedIviDanceAndLenMechanism = channel .unary_unary (
153+ '/nifake_grpc.NiFake/MixedIviDanceAndLenMechanism' ,
154+ request_serializer = nifake__pb2 .MixedIviDanceAndLenMechanismRequest .SerializeToString ,
155+ response_deserializer = nifake__pb2 .MixedIviDanceAndLenMechanismResponse .FromString ,
156+ )
152157 self .OneInputFunction = channel .unary_unary (
153158 '/nifake_grpc.NiFake/OneInputFunction' ,
154159 request_serializer = nifake__pb2 .OneInputFunctionRequest .SerializeToString ,
@@ -671,6 +676,12 @@ def MultipleArraysDifferentSize(self, request, context):
671676 context .set_details ('Method not implemented!' )
672677 raise NotImplementedError ('Method not implemented!' )
673678
679+ def MixedIviDanceAndLenMechanism (self , request , context ):
680+ """Missing associated documentation comment in .proto file."""
681+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
682+ context .set_details ('Method not implemented!' )
683+ raise NotImplementedError ('Method not implemented!' )
684+
674685 def OneInputFunction (self , request , context ):
675686 """Missing associated documentation comment in .proto file."""
676687 context .set_code (grpc .StatusCode .UNIMPLEMENTED )
@@ -1235,6 +1246,11 @@ def add_NiFakeServicer_to_server(servicer, server):
12351246 request_deserializer = nifake__pb2 .MultipleArraysDifferentSizeRequest .FromString ,
12361247 response_serializer = nifake__pb2 .MultipleArraysDifferentSizeResponse .SerializeToString ,
12371248 ),
1249+ 'MixedIviDanceAndLenMechanism' : grpc .unary_unary_rpc_method_handler (
1250+ servicer .MixedIviDanceAndLenMechanism ,
1251+ request_deserializer = nifake__pb2 .MixedIviDanceAndLenMechanismRequest .FromString ,
1252+ response_serializer = nifake__pb2 .MixedIviDanceAndLenMechanismResponse .SerializeToString ,
1253+ ),
12381254 'OneInputFunction' : grpc .unary_unary_rpc_method_handler (
12391255 servicer .OneInputFunction ,
12401256 request_deserializer = nifake__pb2 .OneInputFunctionRequest .FromString ,
@@ -2059,6 +2075,23 @@ def MultipleArraysDifferentSize(request,
20592075 options , channel_credentials ,
20602076 insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
20612077
2078+ @staticmethod
2079+ def MixedIviDanceAndLenMechanism (request ,
2080+ target ,
2081+ options = (),
2082+ channel_credentials = None ,
2083+ call_credentials = None ,
2084+ insecure = False ,
2085+ compression = None ,
2086+ wait_for_ready = None ,
2087+ timeout = None ,
2088+ metadata = None ):
2089+ return grpc .experimental .unary_unary (request , target , '/nifake_grpc.NiFake/MixedIviDanceAndLenMechanism' ,
2090+ nifake__pb2 .MixedIviDanceAndLenMechanismRequest .SerializeToString ,
2091+ nifake__pb2 .MixedIviDanceAndLenMechanismResponse .FromString ,
2092+ options , channel_credentials ,
2093+ insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
2094+
20622095 @staticmethod
20632096 def OneInputFunction (request ,
20642097 target ,
0 commit comments