zbentley commented on issue #55: URL: https://github.com/apache/pulsar-client-python/issues/55#issuecomment-1536268280
This package already provides asynchronicity (`Producer.send_async` and the `message_listener` argument to the client). While those don't provide `async` or `await` _syntactic constructs_, they are _asynchronous_ (nonblocking) and can be integrated with Python's asyncio (or trio etc.) futures to provide awaitable tokens. How would async/await syntax save on IO waiting time if this client is already asynchronous? Something would still have to wait on I/O as is already being done. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
