Rxjs should have a UnicastSubject similar to rxjava #6937
jasonbaker
started this conversation in
Ideas / Feature request
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
RxJava has a concept of a
UnicastSubject
that buffers events until the subject has one subscriber. This would be useful in some cases because sometimes you want to send events before you're sure a subscriber has subscribed. Currently what you have to do is have aReplaySubject
with some limited buffer size and/or retention window. This leads to a situation where you could either run into:Having something similar to a
UnicastSubject
would help.Beta Was this translation helpful? Give feedback.
All reactions