Public Member Functions | |
| ThreadGroup & | operator+= (const Thread< RT > &t) |
| void | join_all () const |
Private Attributes | |
| std::list< Thread< RT > > | threads |
A container for thread objects. Allows to add new thread objects and wait for them all together. The thread objects need to have the same return value for the called function.
Definition at line 3694 of file thread_management.h.
| ThreadGroup& Threads::ThreadGroup< RT >::operator+= | ( | const Thread< RT > & | t ) | [inline] |
Add another thread object to the collection.
Definition at line 3701 of file thread_management.h.
References Threads::ThreadGroup< RT >::threads.
| void Threads::ThreadGroup< RT >::join_all | ( | ) | const [inline] |
Wait for all threads 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 thread objects between subsequent calls to this function if you want.
Definition at line 3719 of file thread_management.h.
References Threads::ThreadGroup< RT >::threads.
std::list<Thread<RT> > Threads::ThreadGroup< RT >::threads [private] |
List of thread objects.
Definition at line 3729 of file thread_management.h.
Referenced by Threads::ThreadGroup< RT >::join_all(), and Threads::ThreadGroup< RT >::operator+=().
documentation generated on Fri Feb 3 2012 06:04:17 by
doxygen
1.7.2