I am basically trying to inflate a BehaviorSubject<[]> array of data to be loaded into chunks.
BehaviorSubject<[]> a new piece of data will be added (for example, Array.push ), but I do not want to use another array to store and add to BehaviorSubject.next , because this will cause the rendering to take too much time, since the data grow over time.
Any suggestion?
source share