Last active
February 6, 2016 21:33
-
-
Save AArnott/f1348bbb9d884f7929c2 to your computer and use it in GitHub Desktop.
Demonstrates awaiting on a TaskScheduler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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