Removed redundant timeout handling for executeCommand
[ccsdk/cds.git] / py-modules / common / proto / BlueprintProcessing_pb2_grpc.py
1 # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 import grpc
3
4 import proto.BlueprintProcessing_pb2 as BlueprintProcessing__pb2
5
6
7 class BlueprintProcessingServiceStub(object):
8   # missing associated documentation comment in .proto file
9   pass
10
11   def __init__(self, channel):
12     """Constructor.
13
14     Args:
15       channel: A grpc.Channel.
16     """
17     self.process = channel.stream_stream(
18         '/org.onap.ccsdk.cds.controllerblueprints.processing.api.BlueprintProcessingService/process',
19         request_serializer=BlueprintProcessing__pb2.ExecutionServiceInput.SerializeToString,
20         response_deserializer=BlueprintProcessing__pb2.ExecutionServiceOutput.FromString,
21         )
22
23
24 class BlueprintProcessingServiceServicer(object):
25   # missing associated documentation comment in .proto file
26   pass
27
28   def process(self, request_iterator, context):
29     # missing associated documentation comment in .proto file
30     pass
31     context.set_code(grpc.StatusCode.UNIMPLEMENTED)
32     context.set_details('Method not implemented!')
33     raise NotImplementedError('Method not implemented!')
34
35
36 def add_BlueprintProcessingServiceServicer_to_server(servicer, server):
37   rpc_method_handlers = {
38       'process': grpc.stream_stream_rpc_method_handler(
39           servicer.process,
40           request_deserializer=BlueprintProcessing__pb2.ExecutionServiceInput.FromString,
41           response_serializer=BlueprintProcessing__pb2.ExecutionServiceOutput.SerializeToString,
42       ),
43   }
44   generic_handler = grpc.method_handlers_generic_handler(
45       'org.onap.ccsdk.cds.controllerblueprints.processing.api.BlueprintProcessingService', rpc_method_handlers)
46   server.add_generic_rpc_handlers((generic_handler,))