Qbservable.SubscribeOn<TSource> Method (IQbservable<TSource>, IScheduler)
Asynchronously subscribes and unsubscribes observers on the specified synchronization context.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
public static IQbservable<TSource> SubscribeOn<TSource>( this IQbservable<TSource> source, IScheduler scheduler )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.Reactive.Linq.IQbservable<TSource>
The source sequence.
- scheduler
- Type: System.Reactive.Concurrency.IScheduler
The synchronization context to perform subscription and unsubscription actions on.
Return Value
Type: System.Reactive.Linq.IQbservable<TSource>The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context.