This is a disruptor port in C# for proof of concept- NOT Production ready!
This is a proof of concept disruptor written in C# for testing out ring buffer concept.
Wire up Reader and Writer
Barrier acts as the data store for Writer and Reader's cursors. Provides the writer if it can write to the slots.
Is started by a task and starts reading using the Consumer helper.
Helper for reader to consume messages off the ring buffer.
Writes to ring buffer using Reserve and Commit helpers so that it safely handles writes.
- Visual Studio 2015
- Clone this repo.