Skip to content

Instantly share code, notes, and snippets.

@AArnott
Last active February 6, 2016 21:09
Show Gist options
  • Save AArnott/7bc5ff2f84588c8890dc to your computer and use it in GitHub Desktop.
Save AArnott/7bc5ff2f84588c8890dc to your computer and use it in GitHub Desktop.
Demonstrates using an exclusive TaskScheduler to call non-thread-safe code.
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