I am looking for a disruptor implementation in Rust (more specifically: a MP/MC queue, where all consumers receive all entries) and found https://github.com/sachanganesh/eventador-rs
There it states
The LMAX Disruptor serves as a basis for a lot of event-bus implementations, though the contemporary architecture of the Disruptor looks very different from the one presented in the outdated LMAX white-paper.
Is the disruptor pattern outdated and if so, what is its successor?