Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AArnott/34a6e585f8ee524cfc8b to your computer and use it in GitHub Desktop.
Save AArnott/34a6e585f8ee524cfc8b to your computer and use it in GitHub Desktop.
Demonstrates holding a semaphore and yielding
public class ThreadSafeDictionary<K, V>
{
private readonly SemaphoreSlim semaphore = new SemaphoreSlim(1);
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public async Task AddThenRemoveAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
await this.semaphore.WaitAsync(cancellationToken);
try {
this.inner.Add(key, value);
await Task.Delay(50); // still holding semaphore, so no one can get it!
this.inner.Remove(key);
} finally {
this.semaphore.Release();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment