ObservableCollections icon indicating copy to clipboard operation
ObservableCollections copied to clipboard

Requests when used in combination with R3

Open TORISOUP opened this issue 1 year ago • 0 comments

I have two requests.

1. readonly-observable-Dictionary

The IReadonlyReactiveDictionary that existed in UniRx was easy to use, so we request a function equivalent to it. If I tried to handle the current ObservableDictionary Readonly, I would have to divide it into two parts, IReadonlyDictionary and IObservableCollection<KeyValuePair>, which is not easy to handle.

2. Publish OnCompleteMessage from IObservableCollection.

When dealing with IObservableCollection in R3, I feel uncomfortable that it is not possible to unsubscribe from the collection side. For example, could it be possible to make IObservableCollection inherit IDisposable and issue OnCompleted on Dispose()?

TORISOUP avatar Jun 04 '24 05:06 TORISOUP