mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
8 years ago
|
import grpc
|
||
|
from grpc.framework.common import cardinality
|
||
|
from grpc.framework.interfaces.face import utilities as face_utilities
|
||
|
|
||
|
import helloworld_pb2 as helloworld__pb2
|
||
|
|
||
|
|
||
|
class GreeterStub(object):
|
||
|
"""The greeting service definition.
|
||
|
"""
|
||
|
|
||
|
def __init__(self, channel):
|
||
|
"""Constructor.
|
||
|
|
||
|
Args:
|
||
|
channel: A grpc.Channel.
|
||
|
"""
|
||
|
self.SayHello = channel.unary_unary(
|
||
|
'/helloworld.Greeter/SayHello',
|
||
|
request_serializer=helloworld__pb2.HelloRequest.SerializeToString,
|
||
|
response_deserializer=helloworld__pb2.HelloReply.FromString,
|
||
|
)
|
||
|
|
||
|
|
||
|
class GreeterServicer(object):
|
||
|
"""The greeting service definition.
|
||
|
"""
|
||
|
|
||
|
def SayHello(self, request, context):
|
||
|
"""Sends a greeting
|
||
|
"""
|
||
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
||
|
context.set_details('Method not implemented!')
|
||
|
raise NotImplementedError('Method not implemented!')
|
||
|
|
||
|
|
||
|
def add_GreeterServicer_to_server(servicer, server):
|
||
|
rpc_method_handlers = {
|
||
|
'SayHello': grpc.unary_unary_rpc_method_handler(
|
||
|
servicer.SayHello,
|
||
|
request_deserializer=helloworld__pb2.HelloRequest.FromString,
|
||
|
response_serializer=helloworld__pb2.HelloReply.SerializeToString,
|
||
|
),
|
||
|
}
|
||
|
generic_handler = grpc.method_handlers_generic_handler(
|
||
|
'helloworld.Greeter', rpc_method_handlers)
|
||
|
server.add_generic_rpc_handlers((generic_handler,))
|