| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the Apache 2.0 License.
- // See the LICENSE file in the project root for more information.
- using System.Runtime.CompilerServices;
- using System.Threading;
- using System.Threading.Tasks;
- namespace System.Reactive.Concurrency
- {
- public static class AsyncScheduler
- {
- // TODO: Implement proper RendezVous semantics.
- public static ConfiguredTaskAwaitable RendezVous(this Task task, IAsyncScheduler scheduler)
- {
- return task.ConfigureAwait(true);
- }
- public static ConfiguredTaskAwaitable<T> RendezVous<T>(this Task<T> task, IAsyncScheduler scheduler)
- {
- return task.ConfigureAwait(true);
- }
- public static async Task Delay(this IAsyncScheduler scheduler, TimeSpan dueTime, CancellationToken token = default(CancellationToken))
- {
- if (scheduler == null)
- throw new ArgumentNullException(nameof(scheduler));
- var tcs = new TaskCompletionSource<bool>();
- var task = await scheduler.ScheduleAsync(ct =>
- {
- if (ct.IsCancellationRequested)
- {
- tcs.SetCanceled();
- }
- else
- {
- tcs.SetResult(true);
- }
- return Task.CompletedTask;
- }, dueTime);
- using (token.Register(() => task.DisposeAsync()))
- {
- await tcs.Task;
- }
- }
- }
- }
|