Open cloud-rocket opened 4 years ago
Hi,
What is the proper way to use asyncio.create_task for running a message process loop? Something like:
asyncio.create_task
while True: msg = await client.new_message() process(msg)
Thanks!!
Hi @cloud-rocket,
Please clarify what you exactly want to do. Its seems question not about gmqt, but a question about general using of asyncio
Hi,
What is the proper way to use
asyncio.create_task
for running a message process loop? Something like:Thanks!!