|
| SafeQueue (std::size_t capacity=10) |
| Constructor for the SafeQueue. More...
|
|
void | push (T value) |
| Push a value to the queue. More...
|
|
std::optional< T > | try_pop () |
| Try to pop a value from the queue. More...
|
|
bool | try_pop (T &value) |
| Try to pop a value from the queue. More...
|
|
boost::optional< T > | wait_and_pop () |
| Wait for a value to be available in the queue. More...
|
|
void | wait_and_pop (T &value) |
| Wait for a value to be available in the queue for a given timeout. More...
|
|
boost::optional< T > | wait_and_pop_for (const std::chrono::milliseconds &timeout) |
| Wait for a value to be available in the queue for a given timeout. More...
|
|
bool | wait_and_pop_for (const std::chrono::milliseconds &timeout, T &value) |
| Wait for a value to be available in the queue for a given timeout. More...
|
|
bool | empty () const |
|
template<typename T>
class ros2_canopen::SafeQueue< T >
Thread Safe Queue for CANOpen Data Exchange.
- Template Parameters
-
T | Type of the data to be exchanged |
This class is a wrapper around boost::lockfree::queue to provide thread safe data exchange between threads using the queue.