Reference documentation for deal.II version 9.1.0-pre
Public Member Functions | Private Attributes | List of all members
Threads::TaskGroup< RT > Class Template Reference

#include <deal.II/base/thread_management.h>

Public Member Functions

TaskGroupoperator+= (const Task< RT > &t)
 
void join_all () const
 

Private Attributes

std::list< Task< RT > > tasks
 

Detailed Description

template<typename RT = void>
class Threads::TaskGroup< RT >

A container for task objects. Allows to add new task objects and wait for them all together. The task objects need to have the same return value for the called function.

Note that the call to join_all() must be executed on the same thread as the calls that add subtasks. Otherwise, there might be a deadlock. In other words, a Task object should never passed on to another task for calling the join() method.

Author
Wolfgang Bangerth, 2003

Definition at line 2032 of file thread_management.h.

Member Function Documentation

template<typename RT = void>
TaskGroup& Threads::TaskGroup< RT >::operator+= ( const Task< RT > &  t)
inline

Add another task object to the collection.

Definition at line 2039 of file thread_management.h.

template<typename RT = void>
void Threads::TaskGroup< RT >::join_all ( ) const
inline

Wait for all tasks in the collection to finish. It is not a problem if some of them have already been waited for, i.e. you may call this function more than once, and you can also add new task objects between subsequent calls to this function if you want.

Definition at line 2052 of file thread_management.h.

Member Data Documentation

template<typename RT = void>
std::list<Task<RT> > Threads::TaskGroup< RT >::tasks
private

List of task objects.

Definition at line 2064 of file thread_management.h.


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