Skip to content

Instantly share code, notes, and snippets.

@AArnott
Created February 6, 2016 21:08
Show Gist options
  • Save AArnott/c1113438d41e0c2434a5 to your computer and use it in GitHub Desktop.
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.
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