Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 453 Bytes

File metadata and controls

20 lines (16 loc) · 453 Bytes

Meziantou.Framework.Threading

Provides types such as

  • ConcurrentHashSet<T>
  • SynchronizedList<T>
  • AsyncAutoResetEvent
  • AsyncLock
  • ResettableCancellationTokenSource
  • KeyedLock
  • KeyedAsyncLock

Provides extensions methods for

  • SemaphoreSlim
  • Task

Simplifying task awaiting (blog post)

var (a, b) = await (task1, task2);