GameVsJam/3d Prototyp/Assets/Packages/Microsoft.VisualStudio.Thre...
klappstuhl24 5cab2c6912 Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
..
lib Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
.signature.p7s Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
Microsoft.VisualStudio.Threading.nuspec Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
Microsoft.VisualStudio.Threading.nuspec.meta Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
NOTICE Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
NOTICE.meta Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
PackageIcon.png Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
PackageIcon.png.meta Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
README.md Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
README.md.meta Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00
lib.meta Devs Sprechen jetzt wenn man in der nähe ist 2024-04-06 16:47:41 +02:00

README.md

Microsoft.VisualStudio.Threading

Async synchronization primitives, async collections, TPL and dataflow extensions. The JoinableTaskFactory allows synchronously blocking the UI thread for async work. This package is applicable to any .NET application (not just Visual Studio).

Features

  • Async versions of many threading synchronization primitives
    • AsyncAutoResetEvent
    • AsyncBarrier
    • AsyncCountdownEvent
    • AsyncManualResetEvent
    • AsyncReaderWriterLock
    • AsyncSemaphore
    • ReentrantSemaphore
  • Async versions of very common types
    • AsyncEventHandler
    • AsyncLazy<T>
    • AsyncLazyInitializer
    • AsyncLocal<T>
    • AsyncQueue<T>
  • Await extension methods
    • Await on a TaskScheduler to switch to it. Switch to a background thread with await TaskScheduler.Default;
    • Await on a Task with a timeout
    • Await on a Task with cancellation
  • JoinableTaskFactory that allows you to schedule asynchronous or synchronous work that does not deadlock with the UI thread even when the UI thread needs to synchronously block on the result.