Table of Contents

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

TKey

The type of the key used to group elements in the observable sequence.

TValue

The type of the elements contained in the grouped observable sequence.

Inheritance
GroupedAsyncObservable<TKey, TValue>
Implements
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