-
-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Labels
Description
Is your feature request related to a problem? Please describe.
ObservableCollection does not work properly in concurrent mode. It raises events on items addition/removal, that are not handled by watchers, if collection is changed asynchronously / on another thread.
Describe the solution you'd like
Add class ConcurrentObservableCollection, that inherits ObservableCollection and adds concurrency feature.