from pyrogram import Client
app = Client(client_name, api_id=api_id, api_hash=api_hash)
async def handle_messages(client, message):
await some_other_function()
app.run()
If multiple messages are received together, it seems to process them one by one. How can I process multiple messages in parallel?