OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TaskImpl Class Reference

A private class used to implement tbb::task An object is created when task is ready for execution and registered with tbb::task. More...

Inheritance diagram for TaskImpl:
Collaboration diagram for TaskImpl:

Public Member Functions

 TaskImpl (Task *t)
 
virtual ~TaskImpl ()
 Destructor is called when a task execution is compeleted. Invoked implicitly by tbb::task. Invokes OnTaskExit to schedule tasks pending tasks. More...
 

Private Member Functions

tbb::taskexecute ()
 Method called from tbb::task to execute. Invoke Run() method of client. Supports task continuation when Run() returns false. More...
 
 DISALLOW_COPY_AND_ASSIGN (TaskImpl)
 

Private Attributes

Taskparent_
 

Detailed Description

A private class used to implement tbb::task An object is created when task is ready for execution and registered with tbb::task.

Definition at line 47 of file task.cc.

Constructor & Destructor Documentation

TaskImpl::TaskImpl ( Task t)
inline

Definition at line 49 of file task.cc.

TaskImpl::~TaskImpl ( )
virtual

Destructor is called when a task execution is compeleted. Invoked implicitly by tbb::task. Invokes OnTaskExit to schedule tasks pending tasks.

Definition at line 400 of file task.cc.

Here is the call graph for this function:

Member Function Documentation

TaskImpl::DISALLOW_COPY_AND_ASSIGN ( TaskImpl  )
private
tbb::task * TaskImpl::execute ( )
private

Method called from tbb::task to execute. Invoke Run() method of client. Supports task continuation when Run() returns false.

Definition at line 345 of file task.cc.

Here is the call graph for this function:

Member Data Documentation

Task* TaskImpl::parent_
private

Definition at line 63 of file task.cc.


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