Observable.Replay<TSource, TResult> Method (IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>, IScheduler)
March 22, 2012
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying source replaying all notifications.
Assembly: Microsoft.Phone.Reactive (in Microsoft.Phone.Reactive.dll)
public static IObservable<TResult> Replay<TSource, TResult>( this IObservable<TSource> source, Func<IObservable<TSource>, IObservable<TResult>> selector, IScheduler scheduler )
Type Parameters
- TSource
- TResult
Parameters
- source
- Type: System.IObservable<TSource>
- selector
- Type: System.Func<IObservable<TSource>, IObservable<TResult>>
- scheduler
- Type: Microsoft.Phone.Reactive.IScheduler