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
One is listening every update from all joined groups/channels, use while let Ok(...) = client.next_update().await.
The other is rolling-fetch all joined groups and channels, around 4000 messages per second. use let mut history = client.iter_messages(&packed_chat);
The issue is, when thread 2 start running, thread 1 stop yield. When thread 2 pause for a few minutes, thread 1 still not recovery, acting like dead thread.
The text was updated successfully, but these errors were encountered:
I have tow thread/coroutine in my app:
while let Ok(...) = client.next_update().await
.let mut history = client.iter_messages(&packed_chat);
The issue is, when thread 2 start running, thread 1 stop yield. When thread 2 pause for a few minutes, thread 1 still not recovery, acting like dead thread.
The text was updated successfully, but these errors were encountered: