Looking for feedback on if my use case is supporte...
# store
s
Looking for feedback on if my use case is supported by StoreX paging: I have data from three sources I need to combine into one coherent collection. The key for each entry will be timestamped with an Instant 2 of the data sources are from a WebSocket and need to be appended to the collection and the third source is an endpoint that I need to query for paginated data as the user scrolls backwards in time. Would the correct way to implement this with Store and Paging be: • Create a mutable store ◦ The two Websocket data sources would write their data to store as it comes in • Pass that MutableStore to the PagingBuilder and implement backwards pagination following the normal patterns. Will Paging get notified of the data added by the WebSocket correctly? Thanks 🙂
To simplify: If I create a Pager with a MutableStore and manually push updates to the MutableStore, will Pager be updated accordingly?