| 
| typedef Input  | input_type | 
|   | 
| typedef Output  | output_type | 
|   | 
| typedef internal::function_input< input_type, output_type, Policy, internals_allocator >  | input_impl_type | 
|   | 
| typedef internal::function_input_queue< input_type, internals_allocator >  | input_queue_type | 
|   | 
| typedef internal::function_output< output_type >  | fOutput_type | 
|   | 
| typedef input_impl_type::predecessor_type  | predecessor_type | 
|   | 
| typedef fOutput_type::successor_type  | successor_type | 
|   | 
| typedef Input  | input_type | 
|   | 
| typedef Output  | output_type | 
|   | 
| typedef function_body< input_type, output_type >  | function_body_type | 
|   | 
| typedef function_input< Input, Output, 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 Output  | output_type | 
|   | 
| typedef sender< output_type >::successor_type  | successor_type | 
|   | 
| typedef broadcast_cache< output_type >  | broadcast_cache_type | 
|   | 
| typedef untyped_receiver  | successor_type | 
|   | The successor type for this node.  More...
  | 
|   | 
 | 
| template<typename Body >  | 
| __TBB_NOINLINE_SYM  | function_node (graph &g, size_t concurrency, __TBB_FLOW_GRAPH_PRIORITY_ARG1(Body body, node_priority_t priority=tbb::flow::internal::no_priority)) | 
|   | Constructor.  More...
  | 
|   | 
| __TBB_NOINLINE_SYM  | function_node (const function_node &src) | 
|   | Copy constructor.  More...
  | 
|   | 
|   | graph_node (graph &g) | 
|   | 
| virtual  | ~graph_node () | 
|   | 
|   | function_input (graph &g, size_t max_concurrency,) | 
|   | 
|   | function_input (const function_input &src) | 
|   | Copy constructor.  More...
  | 
|   | 
|   | ~function_input () | 
|   | 
| Body  | copy_function_object () | 
|   | 
| output_type  | apply_body_impl (const input_type &i) | 
|   | 
| task *  | apply_body_impl_bypass (const input_type &i) | 
|   | 
|   | __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...
  | 
|   | 
|   | function_output (graph &g) | 
|   | 
|   | function_output (const function_output &other) | 
|   | 
| bool  | register_successor (successor_type &r) __TBB_override | 
|   | Adds a new successor to this node.  More...
  | 
|   | 
| bool  | remove_successor (successor_type &r) __TBB_override | 
|   | Removes a successor from this node.  More...
  | 
|   | 
| task *  | try_put_task (const output_type &i) | 
|   | 
| broadcast_cache_type &  | successors () | 
|   | 
| graph &  | graph_reference () const | 
|   | 
| 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 = continue_msg, typename Policy = queueing, typename Allocator = __TBB_DEFAULT_NODE_ALLOCATOR(Input)>
class tbb::flow::interface11::function_node< Input, Output, Policy, Allocator >
Implements a function node that supports Input -> Output. 
Definition at line 1456 of file flow_graph.h.