ant-digitalSolutions / antScriber-ui

0 stars 0 forks source link

Improve Events Logic #33

Closed flechilla closed 11 months ago

flechilla commented 1 year ago

Description

The current implementation of the events logic in our platform uses ReplaySubject in some areas. However, this approach has an issue as it emits all previous values to its subscribers. To address this issue, we propose replacing ReplaySubject with BehaviorSubject, providing the last value to subscribers.

Expected Behavior

Additional Context (Optional)