Class GroupedAsyncObservable<TKey, TValue>
- Namespace
- ReactiveUI.Extensions.Async
- Assembly
- ReactiveUI.Extensions.dll
Represents an asynchronous observable sequence that is grouped by a specified key.
public abstract class GroupedAsyncObservable<TKey, TValue> : ObservableAsync<TValue>, IObservableAsync<TValue>
Type Parameters
TKeyThe type of the key used to group elements in the observable sequence.
TValueThe type of the elements contained in the grouped observable sequence.
- Inheritance
-
ObservableAsync<TValue>GroupedAsyncObservable<TKey, TValue>
- Implements
-
IObservableAsync<TValue>
- Inherited Members
- Extension Methods
Remarks
Each instance corresponds to a group within the parent observable, identified by its key. Observers can subscribe to receive elements belonging to the group associated with the specified key.
Constructors
GroupedAsyncObservable()
protected GroupedAsyncObservable()
Properties
Key
Gets the key associated with the current object.
public abstract TKey Key { get; }
Property Value
- TKey