Reputation: 283
I was wondering what the main difference is between the getValue
function and the readonly value
property on the BehaviorSubject
? Is there a benefit of using one over the the other?
Upvotes: 27
Views: 9661
Reputation: 54741
There is no difference between the two methods.
Internally the BehaviorSubject
returns the value from getValue()
. So if you are super picky about performance, then calling getValue()
saves you one function call.
get value(): T {
return this.getValue();
}
Upvotes: 42