-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Events race on frequently sending requests (#444) #994
base: main
Are you sure you want to change the base?
Conversation
FCM
|
Future<void> _chatEvent(ChatEvents event) async { | ||
Future<void> chatEvent( | ||
ChatEvents event, { | ||
bool updateVersion = true, | ||
}) async { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SleepySquash Не стал пока двигать этот метод наверх, так как будет очень большой diff, и не будет понятно что вообще тут поменялось.
|
||
@override | ||
bool operator ==(Object other) => | ||
other is EventChatUnfavorited && | ||
chatId == other.chatId && | ||
kind == other.kind; | ||
|
||
@override | ||
int get hashCode => Object.hash(chatId, kind); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SleepySquash Когда мы добавляли EventPool
для MyUserRepository
то писали operator ==
для всех ивентов. Тут я не уверен что так нужно поступать, так как нам нужно уметь сравнивать не так много ивентов, а писать operator ==
которые не будут использоваться еще для 20+ ивентов не вижу смысла.
Resolves #444
Synopsis
Если быстро менять какой-либо статус, будет происходить гонка событий, из-за чего статус может на несколько фреймов отображаться некоректно.
Solution
Проблема будет исправлена.
Checklist
k::
labels applied