async_greeter_server.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Copyright 2021 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. """The Python AsyncIO implementation of the GRPC hellostreamingworld.MultiGreeter server."""
  15. import asyncio
  16. import logging
  17. import grpc
  18. from hellostreamingworld_pb2 import HelloReply
  19. from hellostreamingworld_pb2 import HelloRequest
  20. from hellostreamingworld_pb2_grpc import MultiGreeterServicer
  21. from hellostreamingworld_pb2_grpc import add_MultiGreeterServicer_to_server
  22. NUMBER_OF_REPLY = 10
  23. class Greeter(MultiGreeterServicer):
  24. async def sayHello(self, request: HelloRequest,
  25. context: grpc.aio.ServicerContext) -> HelloReply:
  26. logging.info("Serving sayHello request %s", request)
  27. for i in range(NUMBER_OF_REPLY):
  28. yield HelloReply(message=f"Hello number {i}, {request.name}!")
  29. async def serve() -> None:
  30. server = grpc.aio.server()
  31. add_MultiGreeterServicer_to_server(Greeter(), server)
  32. listen_addr = "[::]:50051"
  33. server.add_insecure_port(listen_addr)
  34. logging.info("Starting server on %s", listen_addr)
  35. await server.start()
  36. await server.wait_for_termination()
  37. if __name__ == "__main__":
  38. logging.basicConfig(level=logging.INFO)
  39. asyncio.run(serve())