#include <Thread_Pool.h>
Inheritance diagram for TAO_RT_New_Leader_Generator:
Public Member Functions | |
TAO_RT_New_Leader_Generator (TAO_Thread_Lane &lane) | |
Constructor. | |
void | no_leaders_available (void) |
Private Attributes | |
TAO_Thread_Lane & | lane_ |
Lane associated with this leader generator. |
Definition at line 45 of file Thread_Pool.h.
|
Constructor.
Definition at line 27 of file Thread_Pool.cpp.
00029 : lane_ (lane) 00030 { 00031 } |
|
Leader/Follower class uses this method to notify the system that we are out of leaders. Implements TAO_New_Leader_Generator. Definition at line 34 of file Thread_Pool.cpp. References TAO_Thread_Lane::new_dynamic_thread().
00035 { 00036 // Request a new dynamic thread from the Thread Lane 00037 this->lane_.new_dynamic_thread (); 00038 } |
|
Lane associated with this leader generator.
Definition at line 60 of file Thread_Pool.h. |