Skip to content
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

[2.0] Fixed subjects not emitting initial values synchronously on subscription under load #735

Merged
merged 2 commits into from
Apr 27, 2023

Conversation

arkivanov
Copy link
Contributor

The idea is to use a singly-linked queue. On each subscription, acquire the current head and emit the item (or all items till the end, depending on the type of the subject). Then pass the last emitted item via serializer and emit any new items when processed.

Observers must not miss any new items that are sent to the subject cuncurrently after initial items are emitted (synchronously on subscription). E.g. if BehaviorSubject holds item A, and a new observer receives that item synchronously on subscription, and new items B, C and D are sent to the subject concurrently, then that observer must receive B, C and D eventually.

Fixes #727

@arkivanov arkivanov changed the title Fixed subjects not emitting initial values synchronously on subscription under load [2.0] Fixed subjects not emitting initial values synchronously on subscription under load Apr 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants