Public Types | Public Member Functions | Protected Member Functions | Friends | List of all members
tbb::flow::interface7::broadcast_node< T > Class Template Reference

Forwards messages of type T to all successors. More...

#include <flow_graph.h>

Inheritance diagram for tbb::flow::interface7::broadcast_node< T >:
tbb::flow::interface7::graph_node tbb::flow::interface7::receiver< T > tbb::flow::interface7::sender< T >

Public Types

typedef T input_type
 
typedef T output_type
 
typedef sender< input_typepredecessor_type
 
typedef receiver< output_typesuccessor_type
 
- Public Types inherited from tbb::flow::interface7::receiver< T >
typedef T input_type
 The input type of this receiver.
 
typedef sender< T > predecessor_type
 The predecessor type for this node.
 
- Public Types inherited from tbb::flow::interface7::sender< T >
typedef T output_type
 The output type of this sender.
 
typedef receiver< T > successor_type
 The successor type for this node.
 

Public Member Functions

 broadcast_node (graph &g)
 
 broadcast_node (const broadcast_node &src)
 
void set_name (const char *name)
 
virtual bool register_successor (receiver< T > &r)
 Adds a successor.
 
virtual bool remove_successor (receiver< T > &r)
 Removes s as a successor.
 
- Public Member Functions inherited from tbb::flow::interface7::graph_node
 graph_node (graph &g)
 
- Public Member Functions inherited from tbb::flow::interface7::receiver< T >
virtual ~receiver ()
 Destructor.
 
bool try_put (const T &t)
 Put an item to the receiver.
 
virtual bool register_predecessor (predecessor_type &)
 Add a predecessor to the node.
 
virtual bool remove_predecessor (predecessor_type &)
 Remove a predecessor from the node.
 
- Public Member Functions inherited from tbb::flow::interface7::sender< T >
virtual bool try_get (T &)
 Request an item from the sender.
 
virtual bool try_reserve (T &)
 Reserves an item in the sender.
 
virtual bool try_release ()
 Releases the reserved item.
 
virtual bool try_consume ()
 Consumes the reserved item.
 

Protected Member Functions

task * try_put_task (const T &t)
 build a task to run the successor if possible. Default is old behavior.
 
void reset ()
 
void reset_receiver ()
 
- Protected Member Functions inherited from tbb::flow::interface7::receiver< T >
virtual bool is_continue_receiver ()
 

Friends

template<typename R , typename B >
class run_and_put_task
 
template<typename X , typename Y >
class internal::broadcast_cache
 
template<typename X , typename Y >
class internal::round_robin_cache
 

Additional Inherited Members

- Protected Attributes inherited from tbb::flow::interface7::graph_node
graphmy_graph
 
graph_nodenext
 
graph_nodeprev
 

Detailed Description

template<typename T>
class tbb::flow::interface7::broadcast_node< T >

Forwards messages of type T to all successors.


The documentation for this class was generated from the following file:

Copyright © 2005-2014 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.