Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
internal::forward_task_bypass< NodeType > Class Template Reference

A task that calls a node's forward_task function. More...

#include <_flow_graph_body_impl.h>

Inheritance diagram for internal::forward_task_bypass< NodeType >:
Collaboration diagram for internal::forward_task_bypass< NodeType >:

Public Member Functions

 forward_task_bypass (NodeType &n)
 
taskexecute () __TBB_override
 

Private Attributes

NodeType & my_node
 

Detailed Description

template<typename NodeType>
class internal::forward_task_bypass< NodeType >

A task that calls a node's forward_task function.

Definition at line 270 of file _flow_graph_body_impl.h.

Constructor & Destructor Documentation

◆ forward_task_bypass()

template<typename NodeType >
internal::forward_task_bypass< NodeType >::forward_task_bypass ( NodeType &  n)
inline

Definition at line 276 of file _flow_graph_body_impl.h.

279  : graph_task(node_priority),
280 #else
281  ) :
282 #endif
283  my_node(n) {}

Member Function Documentation

◆ execute()

template<typename NodeType >
task* internal::forward_task_bypass< NodeType >::execute ( )
inline

Definition at line 285 of file _flow_graph_body_impl.h.

285  {
286  task * new_task = my_node.forward_task();
287  if (new_task == SUCCESSFULLY_ENQUEUED) new_task = NULL;
288  return new_task;
289  }

References internal::forward_task_bypass< NodeType >::my_node, tbb::flow::internal::SUCCESSFULLY_ENQUEUED, and task.

Member Data Documentation

◆ my_node

template<typename NodeType >
NodeType& internal::forward_task_bypass< NodeType >::my_node
private

The documentation for this class was generated from the following file:
tbb::flow::internal::SUCCESSFULLY_ENQUEUED
static tbb::task *const SUCCESSFULLY_ENQUEUED
Definition: _flow_graph_impl.h:61
internal::forward_task_bypass::my_node
NodeType & my_node
Definition: _flow_graph_body_impl.h:272
task
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task * task
Definition: ittnotify_static.h:119

Copyright © 2005-2020 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.