| JUCE
    | 
Class for a scoped reader/writer. More...
#include <juce_AbstractFifo.h>
| Public Member Functions | |
| ScopedReadWrite ()=default | |
| Construct an unassigned reader/writer. | |
| ScopedReadWrite (AbstractFifo &f, int num) noexcept | |
| Construct a reader/writer and immediately call prepareRead/prepareWrite on the abstractFifo which was passed in. | |
| 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. | |
| 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. | |
| 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 |