We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
juce-toys/multithreading/source/nonblocking_call_queue.h
Line 109 in 9478172
Have you considered the new ScopedReadWrite objects in the AbstractFifo class?
ScopedReadWrite
AbstractFifo
bool read(const T& t) { auto reader = fifo.read(1); if( reader.blockSize1 > 0 ) { data[reader.startIndex1] = t; return true; } return false; }
The text was updated successfully, but these errors were encountered:
https://docs.juce.com/master/classAbstractFifo.html#a41c705711ad487e127df59cd978ef24c
Sorry, something went wrong.
No branches or pull requests
juce-toys/multithreading/source/nonblocking_call_queue.h
Line 109 in 9478172
Have you considered the new
ScopedReadWrite
objects in theAbstractFifo
class?The text was updated successfully, but these errors were encountered: