Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure. Learn more →
AsyncEx Alternatives
Similar projects and alternatives to AsyncEx
-
AspNetCoreDiagnosticScenarios
This repository has examples of broken patterns in ASP.NET Core applications
-
Stream
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
-
-
-
Fusion
Build real-time apps (Blazor included) with less than 1% of extra code responsible for real-time updates. Host 10-1000x faster APIs relying on transparent and nearly 100% consistent caching. We call it DREAM, or Distributed REActive Memoization, and it's here to turn real-time on!
-
-
-
silverback
Silverback is a simple but feature-rich message bus for .NET core (it currently supports Kafka, RabbitMQ and MQTT).
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
-
-
-
AsyncLock
An async/await-friendly lock for .NET, complete with asynchronous waits, safe reëntrance, and more.
-
-
EnumerableAsyncProcessor
Process Multiple Asynchronous Tasks in Various Ways - One at a time / Batched / Rate limited / Concurrently
-
-
-
AsyncAwaitBestPractices
Extensions for System.Threading.Tasks.Task and System.Threading.Tasks.ValueTask
-
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
AsyncEx discussion
AsyncEx reviews and mentions
-
how to safely share state in multithreading applications
PS: You may want to look at the other in-memory concurrency structures available. You may find something that perfectly fits the specific problem you are trying to solve. https://learn.microsoft.com/en-us/dotnet/api/system.threading?view=net-7.0, https://learn.microsoft.com/en-us/dotnet/api/system.collections.concurrent?view=net-7.0, and https://github.com/StephenCleary/AsyncEx
- How to prevent method call if its aready running?
-
Question- Blazor and async
Async Lock.
-
Can `lock`be used with a blazor server application, or should a semaphore be exclusively used?
If you haven't seen it before, there's an excellent async util library on nuget by Stephen Cleary called Nito.AsyncEx.Coordination. It contains a number of classes to help with async synchronization, giving options beyond SemaphoreSlim. It might be worth checking out.
- Deadlock problem
- StephenCleary/AsyncEx: A helper library for async/await [C#, Nuget, Async, Perf]
-
How To Achieve Synchronization In C# While Doing Async Await Multithreaded Programming - .NET Core - In this video, I am comparing #Mutex, #SemaphoreSlim and #ReaderWriterLockSlim synchronization primitives in a multi-threaded async and await methodology using application.
and if you need ReaderWriterLock behavior in an async context, Stephen Cleary has an implementation
-
How to introduce a queue for my API.
Pessimistic concurrency - you can use something like AsyncLock from Nito.AsyncEx package, to lock around each db access.
-
Async workaround ideas for a shared class library problem
This library has class that will allow you to safely run async code in Sync-context enabled environment.
-
What is the best approach to call asynchronous method from synchronous?
Nito.AsyncEx:
-
A note from our sponsor - Stream
getstream.io | 17 Jul 2025
Stats
StephenCleary/AsyncEx is an open source project licensed under MIT License which is an OSI approved license.
The primary programming language of AsyncEx is C#.