Skip to content

Instantly share code, notes, and snippets.

@AArnott
Last active February 6, 2016 21:33
Show Gist options
  • Save AArnott/f1348bbb9d884f7929c2 to your computer and use it in GitHub Desktop.
Save AArnott/f1348bbb9d884f7929c2 to your computer and use it in GitHub Desktop.
Demonstrates awaiting on a TaskScheduler
using Microsoft.VisualStudio.Threading;
public class ThreadSafeDictionary<K, V>
{
private readonly TaskScheduler exclusiveScheduler = new ConcurrentExclusiveSchedulerPair().ExclusiveScheduler;
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public async Task AddThenRemoveAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
await this.exclusiveScheduler; // Enabled by Microsoft.VisualStudio.Threading extension method.
cancellationToken.ThrowIfCancellationRequested();
this.inner.Add(key, value);
await Task.Delay(50);
this.inner.Remove(key);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment