-
Notifications
You must be signed in to change notification settings - Fork 308
Support observing individual objects #126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
That would be a feature request. To better understand your use case: how many objects do you want to observe? Are you interested to observe object deletions? |
typical use case is following:
I would estimate that at the same time there could be up to 100 objects being observed. |
So the source of initial list (entities) is not a query? |
quite often it is, but I'd like to decouple ListVM and ItemVM and avoid listening to object changes via query listener |
@avestnik One advantage of list-based observers is that they cover removals and inserts. Wouldn't you still need those? If you do, does it make sense to also observe on the object level? |
I need both, ListVM listens to inserts/deletions, ItemVM listens to object changes |
This would be nice to have, but also still doable in the current iteration. |
Note these related feature requests:
while one can easily listen to changes to lists (queries), there is no way to listen to changes of some particular object
The text was updated successfully, but these errors were encountered: