Observable.Subscribe<TSource> Method (IEnumerable<TSource>, IObserver<TSource>, IScheduler)
Subscribes an observer to an enumerable sequence with the specified source and observer.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IDisposable Subscribe<TSource>( this IEnumerable<TSource> source, IObserver<TSource> observer, IScheduler scheduler )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.Collections.Generic.IEnumerable<TSource>
The enumerable sequence to subscribe to.
- observer
- Type: System.IObserver<TSource>
The observer that will receive notifications from the enumerable sequence.
- scheduler
- Type: System.Reactive.Concurrency.IScheduler
The scheduler to perform the enumeration on.
Return Value
Type: System.IDisposableThe disposable object that can be used to unsubscribe the observer from the enumerable.