Skip to content

Instantly share code, notes, and snippets.

@AArnott
Created February 6, 2016 21:30
Show Gist options
  • Save AArnott/0e41a136f82dea4a00e6 to your computer and use it in GitHub Desktop.
Save AArnott/0e41a136f82dea4a00e6 to your computer and use it in GitHub Desktop.
Demonstrates the using syntax of AsyncSemaphore.
using Microsoft.VisualStudio.Threading; // From the Microsoft.VisualStudio.Threading NuGet package
public class ThreadSafeDictionary<K, V>
{
private readonly AsyncSemaphore semaphore = new AsyncSemaphore(1);
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public async Task AddThenRemoveAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
using (await this.semaphore.EnterAsync(cancellationToken)) {
this.inner.Add(key, value);
await Task.Delay(50); // still holding semaphore, so no one can get it!
this.inner.Remove(key);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment