src/python/grpcio_tests/tests_aio/benchmark/server.py
Go to the documentation of this file.
1 # Copyright 2019 The gRPC Authors.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 
15 import asyncio
16 import logging
17 import unittest
18 
19 from grpc.experimental import aio
20 
21 from src.proto.grpc.testing import benchmark_service_pb2_grpc
22 from tests_aio.benchmark import benchmark_servicer
23 
24 
25 async def _start_async_server():
26  server = aio.server()
27 
28  port = server.add_insecure_port('localhost:%s' % 50051)
30  benchmark_service_pb2_grpc.add_BenchmarkServiceServicer_to_server(
31  servicer, server)
32 
33  await server.start()
34  logging.info('Benchmark server started at :%d' % port)
35  await server.wait_for_termination()
36 
37 
38 def main():
39  loop = asyncio.get_event_loop()
40  loop.create_task(_start_async_server())
41  loop.run_forever()
42 
43 
44 if __name__ == '__main__':
45  logging.basicConfig(level=logging.DEBUG)
46  main()
server._start_async_server
def _start_async_server()
Definition: src/python/grpcio_tests/tests_aio/benchmark/server.py:25
grpc::experimental
Definition: include/grpcpp/channel.h:46
main
Definition: main.py:1
server.main
def main()
Definition: examples/python/cancellation/server.py:103
benchmark_servicer.BenchmarkServicer
Definition: benchmark_servicer.py:26


grpc
Author(s):
autogenerated on Fri May 16 2025 03:00:11