mirror of https://github.com/locustio/locust.git
78 lines
2.4 KiB
Python
78 lines
2.4 KiB
Python
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
"""Client and server classes corresponding to protobuf-defined services."""
|
|
|
|
import grpc
|
|
import hello_pb2 as hello__pb2
|
|
|
|
|
|
class HelloServiceStub:
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
def __init__(self, channel):
|
|
"""Constructor.
|
|
|
|
Args:
|
|
channel: A grpc.Channel.
|
|
"""
|
|
self.SayHello = channel.unary_unary(
|
|
"/locust.hello.HelloService/SayHello",
|
|
request_serializer=hello__pb2.HelloRequest.SerializeToString,
|
|
response_deserializer=hello__pb2.HelloResponse.FromString,
|
|
)
|
|
|
|
|
|
class HelloServiceServicer:
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
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!")
|
|
|
|
|
|
def add_HelloServiceServicer_to_server(servicer, server):
|
|
rpc_method_handlers = {
|
|
"SayHello": grpc.unary_unary_rpc_method_handler(
|
|
servicer.SayHello,
|
|
request_deserializer=hello__pb2.HelloRequest.FromString,
|
|
response_serializer=hello__pb2.HelloResponse.SerializeToString,
|
|
),
|
|
}
|
|
generic_handler = grpc.method_handlers_generic_handler("locust.hello.HelloService", rpc_method_handlers)
|
|
server.add_generic_rpc_handlers((generic_handler,))
|
|
|
|
|
|
# This class is part of an EXPERIMENTAL API.
|
|
class HelloService:
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
@staticmethod
|
|
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,
|
|
"/locust.hello.HelloService/SayHello",
|
|
hello__pb2.HelloRequest.SerializeToString,
|
|
hello__pb2.HelloResponse.FromString,
|
|
options,
|
|
channel_credentials,
|
|
insecure,
|
|
call_credentials,
|
|
compression,
|
|
wait_for_ready,
|
|
timeout,
|
|
metadata,
|
|
)
|