You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the difference in functionality between AsyncApp and App (how it handles events etc.)
I had an app built with App but when i moved to AsyncApp sometimes the bot responds to the same event twice, even though i used await ack().
The text was updated successfully, but these errors were encountered:
Hi @Radu1999, thanks for asking the question! The key difference between App and AsyncApp is that AsyncApp is compatible with asyncio, the non-blocking event-loop mechanism provided by the Python runtime. As long as your app code uses the await keyword for all async function invocations, the code should work without any issues.
I had an app built with App but when i moved to AsyncApp sometimes the bot responds to the same event twice, even though i used await ack().
If you need further assistance with this, could you share the code you're trying to make functional?
What is the difference in functionality between AsyncApp and App (how it handles events etc.)
I had an app built with App but when i moved to AsyncApp sometimes the bot responds to the same event twice, even though i used await ack().
The text was updated successfully, but these errors were encountered: