Created
February 6, 2016 21:08
-
-
Save AArnott/c1113438d41e0c2434a5 to your computer and use it in GitHub Desktop.
Demonstrates calling non-thread-safe code using an exclusive TaskScheduler with an async delegate.
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
public class ThreadSafeDictionary<K, V> | |
{ | |
private readonly TaskScheduler exclusiveScheduler = new ConcurrentExclusiveSchedulerPair().ExclusiveScheduler; | |
private readonly Dictionary<K, V> inner = new Dictionary<K, V>(); | |
public Task AddThenRemoveAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) { | |
return TaskScheduler.Factory.StartNew( | |
async delegate { | |
this.inner.Add(key, value); | |
await Task.Delay(50); | |
this.inner.Remove(key); | |
}, | |
cancellationToken, | |
TaskCreationOptions.None, | |
this.exclusiveScheduler).Unwrap(); // Unwrap() is very important! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment