Inherits std::queue< T >.
template<class T, class
_BASE = std::queue<T>>
class o2::test::Fifo< T, _BASE >
A thread safe FIFO.
The class inherits protected, this makes all methods of the underlying container inaccessible to the outside. All methods can only be called through the implemented methods of this class which are thread protected.
TODO: not sure at the moment what is the best option to indicate end-of-data in the FIFO. Right now, the push method takes an optional parameter to indicate the last insertion. This allows for checking in the pull method whether data can be expected despite of a currently empty queue, or if the pull should be terminated immediately.
Definition at line 59 of file Fifo.h.