#include <concurrent_queue.hpp>
|
using | size_type = typename Container::size_type |
|
using | value_type = T |
|
virtual | ~ConcurrentContainer ()=default |
|
void | push (T &&item) |
|
void | pop (T &item) |
|
bool | pop (T &item, std::chrono::duration< R, P > duration) |
|
bool | empty () const |
|
size_type | size () const |
|
std::mutex | m_container_mutex |
|
std::queue< T > | m_container |
|
template<typename T>
class fly::ConcurrentQueue< T >
Wrapper around a std::queue to provide thread safe access.
- Author
- Timothy Flynn (trfly.nosp@m.nn89.nosp@m.@pm.m.nosp@m.e)
- Version
- July 27, 2016
◆ pop_internal()
◆ push_internal()
The documentation for this class was generated from the following file: