JUCE
|
Class for a scoped reader/writer. More...
Public Member Functions | |
ScopedReadWrite ()=default | |
Construct an unassigned reader/writer. More... | |
ScopedReadWrite (AbstractFifo &f, int num) noexcept | |
Construct a reader/writer and immediately call prepareRead/prepareWrite on the abstractFifo which was passed in. More... | |
ScopedReadWrite (const ScopedReadWrite &)=delete | |
ScopedReadWrite (ScopedReadWrite &&) noexcept | |
ScopedReadWrite & | operator= (const ScopedReadWrite &)=delete |
ScopedReadWrite & | operator= (ScopedReadWrite &&) noexcept |
~ScopedReadWrite () noexcept | |
Calls finishedRead or finishedWrite if this is a non-null scoped reader/writer. More... | |
template<typename FunctionToApply > | |
void | forEach (FunctionToApply &&func) const |
Calls the passed function with each index that was deemed valid for the current read/write operation. More... | |
Public Attributes | |
int | startIndex1 |
int | blockSize1 |
int | startIndex2 |
int | blockSize2 |
Class for a scoped reader/writer.
|
default |
Construct an unassigned reader/writer.
Doesn't do anything upon destruction.
|
noexcept |
Construct a reader/writer and immediately call prepareRead/prepareWrite on the abstractFifo which was passed in.
This object will hold a pointer back to the fifo, so make sure that the fifo outlives this object.
|
delete |
|
noexcept |
|
noexcept |
Calls finishedRead or finishedWrite if this is a non-null scoped reader/writer.
|
delete |
|
noexcept |
void AbstractFifo::ScopedReadWrite< mode >::forEach | ( | FunctionToApply && | func | ) | const |
Calls the passed function with each index that was deemed valid for the current read/write operation.
int AbstractFifo::ScopedReadWrite< mode >::startIndex1 |
int AbstractFifo::ScopedReadWrite< mode >::blockSize1 |
int AbstractFifo::ScopedReadWrite< mode >::startIndex2 |
int AbstractFifo::ScopedReadWrite< mode >::blockSize2 |