Signapse
src
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
"
10
template
<
typename
T>
11
T
BlockingQueue<T>::Pop
() {
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
}
23
template
<
typename
T>
24
bool
BlockingQueue<T>::IsEmpty
(){
25
return
internalQueue.empty();
26
}
27
33
template
<
typename
T>
34
int
BlockingQueue<T>::Size
(){
35
return
internalQueue.size();
36
}
37
43
template
<
typename
T>
44
void
BlockingQueue<T>::Push
(T toPush) {
45
{
46
internalQueue.push_front(toPush);
47
}
48
condition.notify_all();
49
}
BlockingQueue.h
BlockingQueue::Push
void Push(T toPush)
Definition:
BlockingQueue.cpp:44
BlockingQueue::Size
int Size()
Definition:
BlockingQueue.cpp:34
BlockingQueue::Pop
T Pop()
Definition:
BlockingQueue.cpp:11
BlockingQueue::IsEmpty
bool IsEmpty()
Definition:
BlockingQueue.cpp:24
Generated by
1.9.3