This topic has not yet been rated - Rate this topic

Observable.Merge<TSource> Method (IEnumerable<IObservable<TSource>>, IScheduler)

Merges an enumerable sequence of observable sequences into a single observable sequence.

Namespace:  System.Reactive.Linq
Assembly:  System.Reactive (in System.Reactive.dll)
public static IObservable<TSource> Merge<TSource>(
	this IEnumerable<IObservable<TSource>> sources,
	IScheduler scheduler
)

Type Parameters

TSource

The type of source.

Parameters

sources
Type: System.Collections.Generic.IEnumerable<IObservable<TSource>>
The enumerable sequence of observable sequences.
scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler to run the enumeration of the sequence of sources on.

Return Value

Type: System.IObservable<TSource>
The observable sequence that merges the elements of the observable sequences.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<IObservable<TSource>>. When you use instance method syntax to call this method, omit the first parameter. For more information, see http://msdn.microsoft.com/en-us/library/bb384936.aspx or http://msdn.microsoft.com/en-us/library/bb383977.aspx.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.