# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc
from examples.basic import hello_pb2 as examples_dot_basic_dot_hello__pb2
[docs]
class GreeterStub(object):
"""Missing associated documentation comment in .proto file."""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
[docs]
self.SayHello = channel.unary_unary(
'/examples.basic.Greeter/SayHello',
request_serializer=examples_dot_basic_dot_hello__pb2.HelloRequest.SerializeToString,
response_deserializer=examples_dot_basic_dot_hello__pb2.HelloReply.FromString,
)
[docs]
self.SayHelloStreamReply = channel.unary_stream(
'/examples.basic.Greeter/SayHelloStreamReply',
request_serializer=examples_dot_basic_dot_hello__pb2.HelloRequest.SerializeToString,
response_deserializer=examples_dot_basic_dot_hello__pb2.HelloReply.FromString,
)
[docs]
self.SayHelloBidiStream = channel.stream_stream(
'/examples.basic.Greeter/SayHelloBidiStream',
request_serializer=examples_dot_basic_dot_hello__pb2.HelloRequest.SerializeToString,
response_deserializer=examples_dot_basic_dot_hello__pb2.HelloReply.FromString,
)
[docs]
class GreeterServicer(object):
"""Missing associated documentation comment in .proto file."""
[docs]
def SayHello(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!')
[docs]
def SayHelloStreamReply(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!')
[docs]
def SayHelloBidiStream(self, request_iterator, 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!')
[docs]
def add_GreeterServicer_to_server(servicer, server):
rpc_method_handlers = {
'SayHello': grpc.unary_unary_rpc_method_handler(
servicer.SayHello,
request_deserializer=examples_dot_basic_dot_hello__pb2.HelloRequest.FromString,
response_serializer=examples_dot_basic_dot_hello__pb2.HelloReply.SerializeToString,
),
'SayHelloStreamReply': grpc.unary_stream_rpc_method_handler(
servicer.SayHelloStreamReply,
request_deserializer=examples_dot_basic_dot_hello__pb2.HelloRequest.FromString,
response_serializer=examples_dot_basic_dot_hello__pb2.HelloReply.SerializeToString,
),
'SayHelloBidiStream': grpc.stream_stream_rpc_method_handler(
servicer.SayHelloBidiStream,
request_deserializer=examples_dot_basic_dot_hello__pb2.HelloRequest.FromString,
response_serializer=examples_dot_basic_dot_hello__pb2.HelloReply.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'examples.basic.Greeter', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
# This class is part of an EXPERIMENTAL API.
[docs]
class Greeter(object):
"""Missing associated documentation comment in .proto file."""
@staticmethod
[docs]
def SayHello(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, '/examples.basic.Greeter/SayHello',
examples_dot_basic_dot_hello__pb2.HelloRequest.SerializeToString,
examples_dot_basic_dot_hello__pb2.HelloReply.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
[docs]
def SayHelloStreamReply(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_stream(request, target, '/examples.basic.Greeter/SayHelloStreamReply',
examples_dot_basic_dot_hello__pb2.HelloRequest.SerializeToString,
examples_dot_basic_dot_hello__pb2.HelloReply.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
[docs]
def SayHelloBidiStream(request_iterator,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.stream_stream(request_iterator, target, '/examples.basic.Greeter/SayHelloBidiStream',
examples_dot_basic_dot_hello__pb2.HelloRequest.SerializeToString,
examples_dot_basic_dot_hello__pb2.HelloReply.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)