queue_node¶
[flow_graph.queue_node]
A node that forwards messages in first-in first-out (FIFO) order by maintaining a buffer of messages.
// Defined in header <tbb/flow_graph.h>
namespace tbb {
namespace flow {
template <typename T >
class queue_node : public graph_node, public receiver<T>, public sender<T> {
public:
explicit queue_node( graph &g );
queue_node( const queue_node &src );
~queue_node();
bool try_put( const T &v );
bool try_get( T &v );
};
} // namespace flow
} // namespace tbb
Requirements:
The type
Tshall meet the CopyConstructible requirements from [copyconstructible] and CopyAssignable requirements from [copyassignable] ISO C++ Standard sections.
queue_node forwards messages in first-in first-out (FIFO) order to a single successor in
its successor set.
queue_node is a graph_node, receiver and sender.
queue_node has a buffering and single-push properties.
Member functions¶
-
queue_node(const queue_node &src)¶ Constructs an empty
queue_nodethat belongs to the same graphgassrc. The list of predecessors, the list of successors and the messages in the buffer are not copied.
-
bool
try_put(const T &v) Add item to internal FIFO buffer. If
vis the only item in thequeue_node, a task is spawned to forward the item to a successor.Returns:
true.
-
bool
try_get(T &v) Returns:
trueif an item can be removed from the front of thequeue_nodeand assigned tov. Returnsfalseif there is no item currently in thequeue_nodeor if the node is reserved.
Example¶
Usage scenario is similar to buffer_node except that messages are passed in first-in first-out (FIFO) order.