123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT License.
- // See the LICENSE file in the project root for more information.
- #if WINDOWS
- using System.Reactive.Concurrency;
- using Windows.UI.Core;
- #if HAS_OS_XAML
- using Windows.UI.Xaml;
- #endif
- namespace System.Reactive.Linq
- {
- /// <summary>
- /// Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers.
- /// </summary>
- [CLSCompliant(false)]
- public static class CoreDispatcherObservable
- {
- #region ObserveOn[CoreDispatcher]
- /// <summary>
- /// Wraps the source sequence in order to run its observer callbacks on the specified dispatcher.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="dispatcher">Dispatcher whose associated message loop is used to notify observers on.</param>
- /// <returns>The source sequence whose observations happen on the specified dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="dispatcher"/> is null.</exception>
- public static IObservable<TSource> ObserveOn<TSource>(this IObservable<TSource> source, CoreDispatcher dispatcher)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- if (dispatcher == null)
- {
- throw new ArgumentNullException(nameof(dispatcher));
- }
- return Synchronization.ObserveOn(source, new CoreDispatcherScheduler(dispatcher));
- }
- /// <summary>
- /// Wraps the source sequence in order to run its observer callbacks on the specified dispatcher.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="dispatcher">Dispatcher whose associated message loop is used to notify observers on.</param>
- /// <param name="priority">Priority to schedule work items at.</param>
- /// <returns>The source sequence whose observations happen on the specified dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="dispatcher"/> is null.</exception>
- public static IObservable<TSource> ObserveOn<TSource>(this IObservable<TSource> source, CoreDispatcher dispatcher, CoreDispatcherPriority priority)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- if (dispatcher == null)
- {
- throw new ArgumentNullException(nameof(dispatcher));
- }
- return Synchronization.ObserveOn(source, new CoreDispatcherScheduler(dispatcher, priority));
- }
- #if HAS_OS_XAML
- /// <summary>
- /// Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="dependencyObject">Object to get the dispatcher from.</param>
- /// <returns>The source sequence whose observations happen on the specified object's dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="dependencyObject"/> is null.</exception>
- public static IObservable<TSource> ObserveOn<TSource>(this IObservable<TSource> source, DependencyObject dependencyObject)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- if (dependencyObject == null)
- {
- throw new ArgumentNullException(nameof(dependencyObject));
- }
- return Synchronization.ObserveOn(source, new CoreDispatcherScheduler(dependencyObject.Dispatcher));
- }
- /// <summary>
- /// Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="dependencyObject">Object to get the dispatcher from.</param>
- /// <param name="priority">Priority to schedule work items at.</param>
- /// <returns>The source sequence whose observations happen on the specified object's dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="dependencyObject"/> is null.</exception>
- public static IObservable<TSource> ObserveOn<TSource>(this IObservable<TSource> source, DependencyObject dependencyObject, CoreDispatcherPriority priority)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- if (dependencyObject == null)
- {
- throw new ArgumentNullException(nameof(dependencyObject));
- }
- return Synchronization.ObserveOn(source, new CoreDispatcherScheduler(dependencyObject.Dispatcher, priority));
- }
- #endif
- /// <summary>
- /// Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current window.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <returns>The source sequence whose observations happen on the current window's dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
- public static IObservable<TSource> ObserveOnCoreDispatcher<TSource>(this IObservable<TSource> source)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- return Synchronization.ObserveOn(source, CoreDispatcherScheduler.Current);
- }
- /// <summary>
- /// Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current window.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="priority">Priority to schedule work items at.</param>
- /// <returns>The source sequence whose observations happen on the current window's dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
- public static IObservable<TSource> ObserveOnDispatcher<TSource>(this IObservable<TSource> source, CoreDispatcherPriority priority)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- return Synchronization.ObserveOn(source, new CoreDispatcherScheduler(CoreDispatcherScheduler.Current.Dispatcher, priority));
- }
- #endregion
- #region SubscribeOn[CoreDispatcher]
- /// <summary>
- /// Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="dispatcher">Dispatcher whose associated message loop is used to perform subscription and unsubscription actions on.</param>
- /// <returns>The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="dispatcher"/> is null.</exception>
- /// <remarks>
- /// Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher.
- /// In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use <see cref="CoreDispatcherObservable.ObserveOn{TSource}(IObservable{TSource}, CoreDispatcher)"/>.
- /// </remarks>
- public static IObservable<TSource> SubscribeOn<TSource>(this IObservable<TSource> source, CoreDispatcher dispatcher)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- if (dispatcher == null)
- {
- throw new ArgumentNullException(nameof(dispatcher));
- }
- return Synchronization.SubscribeOn(source, new CoreDispatcherScheduler(dispatcher));
- }
- /// <summary>
- /// Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="dispatcher">Dispatcher whose associated message loop is used to perform subscription and unsubscription actions on.</param>
- /// <param name="priority">Priority to schedule work items at.</param>
- /// <returns>The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="dispatcher"/> is null.</exception>
- /// <remarks>
- /// Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher.
- /// In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use <see cref="CoreDispatcherObservable.ObserveOn{TSource}(IObservable{TSource}, CoreDispatcher, CoreDispatcherPriority)"/>.
- /// </remarks>
- public static IObservable<TSource> SubscribeOn<TSource>(this IObservable<TSource> source, CoreDispatcher dispatcher, CoreDispatcherPriority priority)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- if (dispatcher == null)
- {
- throw new ArgumentNullException(nameof(dispatcher));
- }
- return Synchronization.SubscribeOn(source, new CoreDispatcherScheduler(dispatcher, priority));
- }
- #if HAS_OS_XAML
- /// <summary>
- /// Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="dependencyObject">Object to get the dispatcher from.</param>
- /// <returns>The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="dependencyObject"/> is null.</exception>
- /// <remarks>
- /// Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object.
- /// In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use <see cref="CoreDispatcherObservable.ObserveOn{TSource}(IObservable{TSource}, DependencyObject)"/>.
- /// </remarks>
- public static IObservable<TSource> SubscribeOn<TSource>(this IObservable<TSource> source, DependencyObject dependencyObject)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- if (dependencyObject == null)
- {
- throw new ArgumentNullException(nameof(dependencyObject));
- }
- return Synchronization.SubscribeOn(source, new CoreDispatcherScheduler(dependencyObject.Dispatcher));
- }
- /// <summary>
- /// Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="dependencyObject">Object to get the dispatcher from.</param>
- /// <param name="priority">Priority to schedule work items at.</param>
- /// <returns>The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="dependencyObject"/> is null.</exception>
- /// <remarks>
- /// Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object.
- /// In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use <see cref="CoreDispatcherObservable.ObserveOn{TSource}(IObservable{TSource}, DependencyObject, CoreDispatcherPriority)"/>.
- /// </remarks>
- public static IObservable<TSource> SubscribeOn<TSource>(this IObservable<TSource> source, DependencyObject dependencyObject, CoreDispatcherPriority priority)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- if (dependencyObject == null)
- {
- throw new ArgumentNullException(nameof(dependencyObject));
- }
- return Synchronization.SubscribeOn(source, new CoreDispatcherScheduler(dependencyObject.Dispatcher, priority));
- }
- #endif
- /// <summary>
- /// Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current window.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <returns>The source sequence whose subscriptions and unsubscriptions happen on the current window's dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
- /// <remarks>
- /// Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current window.
- /// In order to invoke observer callbacks on the dispatcher associated with the current window, e.g. to render results in a control, use <see cref="CoreDispatcherObservable.ObserveOnCoreDispatcher{TSource}(IObservable{TSource})"/>.
- /// </remarks>
- public static IObservable<TSource> SubscribeOnCoreDispatcher<TSource>(this IObservable<TSource> source)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- return Synchronization.SubscribeOn(source, CoreDispatcherScheduler.Current);
- }
- /// <summary>
- /// Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current window.
- /// </summary>
- /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
- /// <param name="source">Source sequence.</param>
- /// <param name="priority">Priority to schedule work items at.</param>
- /// <returns>The source sequence whose subscriptions and unsubscriptions happen on the current window's dispatcher.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
- /// <remarks>
- /// Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current window.
- /// In order to invoke observer callbacks on the dispatcher associated with the current window, e.g. to render results in a control, use <see cref="CoreDispatcherObservable.ObserveOnDispatcher{TSource}(IObservable{TSource}, CoreDispatcherPriority)"/>.
- /// </remarks>
- public static IObservable<TSource> SubscribeOnDispatcher<TSource>(this IObservable<TSource> source, CoreDispatcherPriority priority)
- {
- if (source == null)
- {
- throw new ArgumentNullException(nameof(source));
- }
- return Synchronization.SubscribeOn(source, new CoreDispatcherScheduler(CoreDispatcherScheduler.Current.Dispatcher, priority));
- }
- #endregion
- }
- }
- #endif
|