• Stars
    star
    453
  • Rank 96,573 (Top 2 %)
  • Language
    C++
  • Created about 13 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

disruptor concurency pattern in c++

disruptor--

Build Status Coverage Status

C++ implementation of LMAX's disruptor pattern.

Supported compilers:

  • clang-3.5
  • clang-3.6
  • gcc-4.8
  • gcc-4.9
  • gcc-5

Build instructions

This library is a header-only library and doesn't require compile step, move/copy the disruptor/ folder in one of the include folder.

If you want to develop and/or submit patches to disruptor-- you need:

  • CMake >= 3.0.1
  • libboost-test

Once dependencies are met

# mkdir -p build && cd build
# cmake .. && make all test