| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.using System;using System.Reactive.Disposables;namespace System.Reactive.Concurrency{    public static partial class Scheduler    {        /// <summary>        /// Schedules an action to be executed.        /// </summary>        /// <param name="scheduler">Scheduler to execute the action on.</param>        /// <param name="action">Action to execute.</param>        /// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>        /// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is null.</exception>        public static IDisposable Schedule(this IScheduler scheduler, Action action)        {            if (scheduler == null)                throw new ArgumentNullException("scheduler");            if (action == null)                throw new ArgumentNullException("action");            return scheduler.Schedule(action, Invoke);        }        /// <summary>        /// Schedules an action to be executed after the specified relative due time.        /// </summary>        /// <param name="scheduler">Scheduler to execute the action on.</param>        /// <param name="action">Action to execute.</param>        /// <param name="dueTime">Relative time after which to execute the action.</param>        /// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>        /// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is null.</exception>        public static IDisposable Schedule(this IScheduler scheduler, TimeSpan dueTime, Action action)        {            if (scheduler == null)                throw new ArgumentNullException("scheduler");            if (action == null)                throw new ArgumentNullException("action");            return scheduler.Schedule(action, dueTime, Invoke);        }        /// <summary>        /// Schedules an action to be executed at the specified absolute due time.        /// </summary>        /// <param name="scheduler">Scheduler to execute the action on.</param>        /// <param name="action">Action to execute.</param>        /// <param name="dueTime">Absolute time at which to execute the action.</param>        /// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>        /// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is null.</exception>        public static IDisposable Schedule(this IScheduler scheduler, DateTimeOffset dueTime, Action action)        {            if (scheduler == null)                throw new ArgumentNullException("scheduler");            if (action == null)                throw new ArgumentNullException("action");            return scheduler.Schedule(action, dueTime, Invoke);        }        /// <summary>        /// Schedules an action to be executed.        /// </summary>        /// <param name="scheduler">Scheduler to execute the action on.</param>        /// <param name="action">Action to execute.</param>        /// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>        /// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is null.</exception>        public static IDisposable ScheduleLongRunning(this ISchedulerLongRunning scheduler, Action<ICancelable> action)        {            if (scheduler == null)                throw new ArgumentNullException("scheduler");            if (action == null)                throw new ArgumentNullException("action");            return scheduler.ScheduleLongRunning(action, (a, c) => a(c));        }        static IDisposable Invoke(IScheduler scheduler, Action action)        {            action();            return Disposable.Empty;        }    }}
 |