Last active
February 6, 2016 21:09
-
-
Save AArnott/7bc5ff2f84588c8890dc to your computer and use it in GitHub Desktop.
Demonstrates using an exclusive TaskScheduler to call non-thread-safe code.
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 AddAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) { | |
return TaskScheduler.Factory.StartNew( | |
() => this.inner.Add(key, value), | |
cancellationToken, | |
TaskCreationOptions.None, | |
this.exclusiveScheduler); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment