Consumer/producer queue.
More...
#include <tdme/os/threading/Queue.h>
|
| Queue (const unsigned int maxElements) |
| Public constructor. More...
|
|
virtual | ~Queue () |
| Destructor, removes remaining elements from queue. More...
|
|
void | stop () |
| Requests this queue to be stopped, any gets will be woke up and return NULL. More...
|
|
T * | getElement () |
| Gets an element from this queue, if no element exists yet the calling thread will be blocked until an element is available. More...
|
|
bool | addElement (T *element, const bool declinable) |
| Adds an element to this queue, signals threads which waits for an element. More...
|
|
template<typename T>
class tdme::os::threading::Queue< T >
Consumer/producer queue.
- Author
- Andreas Drewke
Definition at line 24 of file Queue.h.
◆ QueueType
◆ Queue()
Queue |
( |
const unsigned int |
maxElements | ) |
|
|
inline |
Public constructor.
Definition at line 29 of file Queue.h.
◆ ~Queue()
Destructor, removes remaining elements from queue.
Definition at line 40 of file Queue.h.
◆ addElement()
bool addElement |
( |
T * |
element, |
|
|
const bool |
declinable |
|
) |
| |
|
inline |
Adds an element to this queue, signals threads which waits for an element.
- Parameters
-
element | T* element |
declinable | bool if element is declinable |
- Returns
- if element was added
Definition at line 83 of file Queue.h.
◆ getElement()
Gets an element from this queue, if no element exists yet the calling thread will be blocked until an element is available.
- Returns
- T*
Definition at line 60 of file Queue.h.
◆ stop()
Requests this queue to be stopped, any gets will be woke up and return NULL.
Definition at line 51 of file Queue.h.
◆ data
◆ maxElements
◆ stopRequested
volatile bool stopRequested |
|
private |
The documentation for this class was generated from the following file:
- /home/andreas/Development/drewke.net/tdme2/src/tdme/os/threading/Queue.h