|
arduino-audio-tools
|
FIFO Queue which is based on a List that is thread save. More...
#include <SynchronizedQueue.h>
Public Member Functions | |
| bool | clear () |
| bool | dequeue (T &data) |
| bool | empty () |
| bool | enqueue (T &data) |
| bool | peek (T &data) |
| void | setAllocator (Allocator &allocator) |
| size_t | size () |
Protected Attributes | |
| List< T > | l |
| TMutex | mutex |
FIFO Queue which is based on a List that is thread save.
| T | |
| TMutex |