Disruptor-net is a .NET port of LMAX Disruptor, a high performance inter-thread message passing framework. It can be succinctly defined as a circular queue with a configurable sequence of consumers, and comes with several key features such as zero memory allocation after initial setup, push-based consumers, optionally lock-free, and configurable wait strategies. The latest version, 5.0.0, is available on NuGet and supports .NET 5.0+ and .NET Standard 2.1 runtimes. To get started with using Disruptor-net, youll need to define your own event type, create a consumer, and setup the Disruptor. You can find more detailed information in the wiki. Disruptor-net is licensed under Apache License, Version 2.0.