Skip to content

,System.TimeSpan,System.Reactive.Concurrency.IScheduler)}

ReactiveExtensions.Conflate(IObservable, TimeSpan, IScheduler) method

Defined in

Type: ReactiveExtensions Namespace: ReactiveUI.Extensions Assembly: ReactiveUI.Extensions.dll

Applies to

net10.0, net10.0-browserwasm1.0, net10.0-desktop1.0, net9.0, net9.0-browserwasm1.0, net9.0-desktop1.0, net8.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.2, net8.0-macos14.5, net8.0-tvos17.2, netstandard2.1, net462, net481

public static IObservable<T> Conflate<T>(this IObservable<T> source, TimeSpan minimumUpdatePeriod, IScheduler scheduler)

View source

Summary: Applies a conflation algorithm to an observable stream. Anytime the stream OnNext twice below minimumUpdatePeriod, the second update gets delayed to respect the minimumUpdatePeriod. If more than 2 updates happen, only the last update is pushed.

Type parameters

NameDescription
TThe type.

Parameters

NameTypeDescription
sourceIObservableThe stream.
minimumUpdatePeriodTimeSpanMinimum delay between two updates.
scheduler[IScheduler](#Scheduler to publish updates.

Returns: IObservable -- The conflated stream.