Signapse
BlockingQueue.cpp
Go to the documentation of this file.
1//
2// Blocking queue implementation, currently only blocks when Get is attempted while there are no elements inside the queue. In the future and max size could be defined and blocking could be added when the queue is full
3//
4#include "BlockingQueue.h"
10template <typename T>
12 std::unique_lock<std::mutex> lock(mutex);
13 condition.wait(lock, [=]{ return !internalQueue.empty(); });
14 T ret = internalQueue.back();
15 internalQueue.pop_back();
16 return ret;
17}
23template <typename T>
25 return internalQueue.empty();
33template <typename T>
35 return internalQueue.size();
36}
37
43template <typename T>
44void BlockingQueue<T>::Push(T toPush) {
45 {
46 internalQueue.push_front(toPush);
47 }
48 condition.notify_all();
49}
void Push(T toPush)