When creating an RxJS BehaviorSubject
, it stays a BehaviorSubject
until it's pipe
'd. As soon a pipe
'd version is returned, it bees an AnonymousSubject
.
// Instance of `BehaviorSubject`
const behaviorSubject$ = new BehaviorSubject({ someValue: null })
// Suddenly bees an Anonymous Subject
const anonymousSubject$ = (
behaviorSubject$
.pipe(
pluck('someValue')
)
)
// Also suddenly bees an Anonymous Subject
const anonymousSubject$ = (
new BehaviorSubject({ someValue: null })
.pipe(
pluck('someValue')
)
)
When creating an RxJS BehaviorSubject
, it stays a BehaviorSubject
until it's pipe
'd. As soon a pipe
'd version is returned, it bees an AnonymousSubject
.
// Instance of `BehaviorSubject`
const behaviorSubject$ = new BehaviorSubject({ someValue: null })
// Suddenly bees an Anonymous Subject
const anonymousSubject$ = (
behaviorSubject$
.pipe(
pluck('someValue')
)
)
// Also suddenly bees an Anonymous Subject
const anonymousSubject$ = (
new BehaviorSubject({ someValue: null })
.pipe(
pluck('someValue')
)
)
I experience this same issue with ReplaySubject
as well. I can't seem to pipe through the subject and return that subject back. It always converts to an AnonymousSubject
. I think what I'm looking for here is Promise-like behavior where I can subscribe to this observable from anywhere and grab the one value passed into it.
behaviorSubject$.value
. Should I be using a ReplaySubject
instead?
– Kevin Ghadyani
Commented
Apr 24, 2018 at 3:59
value
is a code smell and even if lift
returned a BehaviorSubject
, what would you expect the value
if the lifted subject to be? The original value or the plucked value? I think you should seriously reconsider using value
.
– cartant
Commented
Apr 24, 2018 at 4:43
BehaviorSubject
allows you to do subject.value
. I can't do that with AnonymousSubject
.
– Kevin Ghadyani
Commented
Dec 18, 2019 at 19:46
This is happening due to lift
called on Subject
.
Let's take a deeper look at your example:
BehaviorSubject
which extends
Subject
pluck
operator which internally calls
map
operatormap
operator internally calls lift
on BehaviorSubject
which is delegated to Subject
which then returns an AnonymousSubject