38 while (
data.size() > 0) {
39 T* element =
data.front();
62 if (
data.size() == 0) {
66 T* element =
data.front();
Realtime consumer/producer queue.
RealtimeQueue(const unsigned int maxElements)
Public constructor.
bool addElement(T *element, const bool declinable)
Adds an element to this queue.
T * getElement()
Gets an element from this queue, if no element exists it will immediately return NULL.
volatile bool stopRequested
queue< T * > RealtimeQueueType
void stop()
Requests this queue to be stopped.
virtual ~RealtimeQueue()
Destructor, removes remaining elements from queue.
Spin Lock implementation.
void unlock()
Unlocks this spin lock.
void lock()
Locks the spin lock, additionally spin lock locks will block until other locks have been unlocked.