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
Hi, I need to delay for a few seconds before replying to some certain messages, but do not need these replies to be ordered, that is, these replies should be "streamlined".
Q1 (delay for 1 sec)
Q2 (immediately follows Q1)
A1 (received after 1sec)
A2 (immediately follows A1)
I observed that the updates are received 'concurrently', but the actions are not: A2 appears after 2 secs.
It seems there is no easy support for this scenario currently, and I may need to use bot jobs. I looked into Internal.hs and it seems the actions are serialized by botActionsQueue. (If I understand it correctly.)
Is there a better way to do it with the current version of the library?
The text was updated successfully, but these errors were encountered:
Hi, I need to delay for a few seconds before replying to some certain messages, but do not need these replies to be ordered, that is, these replies should be "streamlined".
I observed that the updates are received 'concurrently', but the actions are not: A2 appears after 2 secs.
It seems there is no easy support for this scenario currently, and I may need to use bot jobs. I looked into Internal.hs and it seems the actions are serialized by
botActionsQueue
. (If I understand it correctly.)Is there a better way to do it with the current version of the library?
The text was updated successfully, but these errors were encountered: