Skip to content

Instantly share code, notes, and snippets.

@AArnott
Last active February 6, 2016 21:03
Show Gist options
  • Save AArnott/f105843e912d68b8420a to your computer and use it in GitHub Desktop.
Save AArnott/f105843e912d68b8420a to your computer and use it in GitHub Desktop.
Demonstrates using a .NET semaphore as a way to synchronize access to non-thread-safe code
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 AddAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
await this.semaphore.WaitAsync(cancellationToken);
try {
this.inner.Add(key, value);
} finally {
this.semaphore.Release();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment