Home ⌂Doc Index ◂Up ▴
Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
tbb::flow::interface11::internal::async_helpers< T, typename > Struct Template Reference

#include <flow_graph.h>

Inheritance diagram for tbb::flow::interface11::internal::async_helpers< T, typename >:
Collaboration diagram for tbb::flow::interface11::internal::async_helpers< T, typename >:

Public Types

typedef async_msg< T > async_type
 
typedef T filtered_type
 

Static Public Member Functions

static const voidto_void_ptr (const T &t)
 
static voidto_void_ptr (T &t)
 
static const T & from_void_ptr (const void *p)
 
static T & from_void_ptr (void *p)
 
static tasktry_put_task_wrapper_impl (receiver< T > *const this_recv, const void *p, bool is_async)
 

Static Public Attributes

static const bool is_async_type = false
 

Detailed Description

template<typename T, typename = void>
struct tbb::flow::interface11::internal::async_helpers< T, typename >

Definition at line 223 of file flow_graph.h.

Member Typedef Documentation

◆ async_type

template<typename T, typename = void>
typedef async_msg<T> tbb::flow::interface11::internal::async_helpers< T, typename >::async_type

Definition at line 224 of file flow_graph.h.

◆ filtered_type

template<typename T, typename = void>
typedef T tbb::flow::interface11::internal::async_helpers< T, typename >::filtered_type

Definition at line 225 of file flow_graph.h.

Member Function Documentation

◆ from_void_ptr() [1/2]

template<typename T, typename = void>
static const T& tbb::flow::interface11::internal::async_helpers< T, typename >::from_void_ptr ( const void p)
inlinestatic

Definition at line 237 of file flow_graph.h.

237  {
238  return *static_cast<const T*>(p);
239  }
void const char const char int ITT_FORMAT __itt_group_sync p

Referenced by tbb::flow::interface11::internal::type_to_key_function_body< Input, Output & >::~type_to_key_function_body().

Here is the caller graph for this function:

◆ from_void_ptr() [2/2]

template<typename T, typename = void>
static T& tbb::flow::interface11::internal::async_helpers< T, typename >::from_void_ptr ( void p)
inlinestatic

Definition at line 241 of file flow_graph.h.

241  {
242  return *static_cast<T*>(p);
243  }
void const char const char int ITT_FORMAT __itt_group_sync p

◆ to_void_ptr() [1/2]

template<typename T, typename = void>
static const void* tbb::flow::interface11::internal::async_helpers< T, typename >::to_void_ptr ( const T &  t)
inlinestatic

Definition at line 229 of file flow_graph.h.

229  {
230  return static_cast<const void*>(&t);
231  }

◆ to_void_ptr() [2/2]

template<typename T, typename = void>
static void* tbb::flow::interface11::internal::async_helpers< T, typename >::to_void_ptr ( T &  t)
inlinestatic

Definition at line 233 of file flow_graph.h.

233  {
234  return static_cast<void*>(&t);
235  }

◆ try_put_task_wrapper_impl()

template<typename T, typename = void>
static task* tbb::flow::interface11::internal::async_helpers< T, typename >::try_put_task_wrapper_impl ( receiver< T > *const  this_recv,
const void p,
bool  is_async 
)
inlinestatic

Definition at line 245 of file flow_graph.h.

245  {
246  if (is_async) {
247  // This (T) is NOT async and incoming 'A<X> t' IS async
248  // Get data from async_msg
249  const async_msg<filtered_type>& msg = async_helpers< async_msg<filtered_type> >::from_void_ptr(p);
250  task* const new_task = msg.my_storage->subscribe(*this_recv, this_recv->graph_reference());
251  // finalize() must be called after subscribe() because set() can be called in finalize()
252  // and 'this_recv' client must be subscribed by this moment
253  msg.finalize();
254  return new_task;
255  }
256  else {
257  // Incoming 't' is NOT async
258  return this_recv->try_put_task(from_void_ptr(p));
259  }
260  }
static const T & from_void_ptr(const void *p)
Definition: flow_graph.h:237
void const char const char int ITT_FORMAT __itt_group_sync p
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
virtual void finalize() const
async_storage_ptr my_storage

Member Data Documentation

◆ is_async_type

template<typename T, typename = void>
const bool tbb::flow::interface11::internal::async_helpers< T, typename >::is_async_type = false
static

Definition at line 227 of file flow_graph.h.


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

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.