|
| typedef Input | input_type |
| |
| typedef Output | output_type |
| |
| typedef receiver< input_type > | receiver_type |
| |
| typedef receiver_type::predecessor_type | predecessor_type |
| |
| typedef sender< output_type >::successor_type | successor_type |
| |
| typedef receiver_gateway< output_type > | gateway_type |
| |
| typedef internal::async_body_base< gateway_type > | async_body_base_type |
| |
| typedef base_type::output_ports_type | output_ports_type |
| |
| typedef Input | input_type |
| |
| typedef null_type | output_type |
| |
| typedef internal::wrap_tuple_elements< N, internal::multifunction_output, tuple< Output > >::type | output_ports_type |
| |
| typedef internal::multifunction_input< input_type, output_ports_type, Policy, internals_allocator > | input_impl_type |
| |
| typedef internal::function_input_queue< input_type, internals_allocator > | input_queue_type |
| |
| typedef Input | input_type |
| |
| typedef internal::wrap_tuple_elements< tbb::flow::tuple_size< tuple< Output > >::value, internal::multifunction_output, tuple< Output > >::type | output_ports_type |
| |
| typedef multifunction_body< input_type, output_ports_type > | multifunction_body_type |
| |
| typedef multifunction_input< Input, internal::wrap_tuple_elements< tbb::flow::tuple_size< tuple< Output > >::value, internal::multifunction_output, tuple< Output > >::type, Policy, cache_aligned_allocator< Input > > | my_class |
| |
| typedef function_input_base< Input, Policy, cache_aligned_allocator< Input >, my_class > | base_type |
| |
| typedef function_input_queue< input_type, cache_aligned_allocator< Input > > | input_queue_type |
| |
| typedef Input | input_type |
| | The input type of this receiver. More...
|
| |
| typedef receiver< input_type >::predecessor_type | predecessor_type |
| |
| typedef predecessor_cache< input_type, null_mutex > | predecessor_cache_type |
| |
| typedef function_input_queue< input_type, cache_aligned_allocator< Input > > | input_queue_type |
| |
| typedef tbb::internal::allocator_rebind< cache_aligned_allocator< Input >, input_queue_type >::type | queue_allocator_type |
| |
| typedef untyped_sender | predecessor_type |
| | The predecessor type for this node. More...
|
| |
| typedef untyped_receiver | successor_type |
| | The successor type for this node. More...
|
| |
|
| template<typename Body > |
| __TBB_NOINLINE_SYM | async_node (graph &g, size_t concurrency,) |
| |
| __TBB_NOINLINE_SYM | async_node (const async_node &other) |
| |
| gateway_type & | gateway () |
| |
| bool | register_successor (successor_type &r) __TBB_override |
| | Add a new successor to this node. More...
|
| |
| bool | remove_successor (successor_type &r) __TBB_override |
| | Removes a successor from this node. More...
|
| |
| template<typename Body > |
| Body | copy_function_object () |
| |
| __TBB_NOINLINE_SYM | multifunction_node (graph &g, size_t concurrency,) |
| |
| __TBB_NOINLINE_SYM | multifunction_node (const multifunction_node &other) |
| |
| | graph_node (graph &g) |
| |
| virtual | ~graph_node () |
| |
| | multifunction_input (graph &g, size_t max_concurrency,) |
| |
| | multifunction_input (const multifunction_input &src) |
| | Copy constructor. More...
|
| |
| | ~multifunction_input () |
| |
| Body | copy_function_object () |
| |
| task * | apply_body_impl_bypass (const input_type &i) |
| |
| output_ports_type & | output_ports () |
| |
| | __TBB_STATIC_ASSERT (!((internal::has_policy< queueing, Policy >::value) &&(internal::has_policy< rejecting, Policy >::value)), "queueing and rejecting policies can't be specified simultaneously") |
| |
| | function_input_base (graph &g, __TBB_FLOW_GRAPH_PRIORITY_ARG1(size_t max_concurrency, node_priority_t priority)) |
| | Constructor for function_input_base. More...
|
| |
| | function_input_base (const function_input_base &src) |
| | Copy constructor. More...
|
| |
| virtual | ~function_input_base () |
| | Destructor. More...
|
| |
| task * | try_put_task (const input_type &t) __TBB_override |
| | Put item to successor; return task to run the successor if possible. More...
|
| |
| bool | register_predecessor (predecessor_type &src) __TBB_override |
| | Adds src to the list of cached predecessors. More...
|
| |
| bool | remove_predecessor (predecessor_type &src) __TBB_override |
| | Removes src from the list of cached predecessors. More...
|
| |
| bool | try_put (const typename internal::async_helpers< Input >::filtered_type &t) |
| | Put an item to the receiver. More...
|
| |
| bool | try_put (const typename internal::async_helpers< Input >::async_type &t) |
| |
| virtual | ~untyped_receiver () |
| | Destructor. More...
|
| |
| template<typename X > |
| bool | try_put (const X &t) |
| | Put an item to the receiver. More...
|
| |
| virtual bool | try_get (Output &) |
| | Request an item from the sender. More...
|
| |
| virtual bool | try_reserve (Output &) |
| | Reserves an item in the sender. More...
|
| |
| virtual | ~untyped_sender () |
| |
| virtual bool | try_release () |
| | Releases the reserved item. More...
|
| |
| virtual bool | try_consume () |
| | Consumes the reserved item. More...
|
| |
template<typename Input, typename Output, typename Policy = queueing_lightweight, typename Allocator = __TBB_DEFAULT_NODE_ALLOCATOR(Input)>
class tbb::flow::interface11::async_node< Input, Output, Policy, Allocator >
Implements async node.
Definition at line 4211 of file flow_graph.h.