Why RXJS angular behaviorSubject emit mutiple values
问题 enter image description hereI use BehaviorSubject to share data between my app components, I have a performance issue due to mutiple emission of same value from BehaviorSubject . For instance, I call http to get team Object from backend and store it in a behaviorSubject, many components subscribe to this BehaviorSubject . Each component gets the value from subscription and does a sequence of manipulations on the value. The essence of the problem is that the value is emitted many times and