CTR NEX API Reference
RingBuffer< T > クラステンプレート

Lock-Free Ring Buffer This ring buffer is implemented without any luck so that it can be used between two threads without lock, as long as one thread only push to it and one thread only pop from it at any time. [詳解]

#include <OnlineCore/src/Platform/Core/RingBuffer.h>

RootObjectを継承しています。

詳解

template<typename T>
class RingBuffer< T >

Lock-Free Ring Buffer This ring buffer is implemented without any luck so that it can be used between two threads without lock, as long as one thread only push to it and one thread only pop from it at any time.

This can allow also a lock-free consumer with lock-stepped multiple producers or similar schemes.