#include <ECG_Reactive_ConsumerEC_Control.h>
Inheritance diagram for TAO_ECG_Reactive_ConsumerEC_Control_Adapter:
Public Member Functions | |
TAO_ECG_Reactive_ConsumerEC_Control_Adapter (TAO_ECG_Reactive_ConsumerEC_Control *adaptee) | |
Constructor. | |
virtual int | handle_timeout (const ACE_Time_Value &tv, const void *arg=0) |
Private Attributes | |
TAO_ECG_Reactive_ConsumerEC_Control * | adaptee_ |
The adapted object. |
The Reactive ConsumerControl strategy uses the reactor to periodically wakeup and verify the state of the consumers registered with the Event Channel.
Definition at line 42 of file ECG_Reactive_ConsumerEC_Control.h.
|
Constructor.
Definition at line 238 of file ECG_Reactive_ConsumerEC_Control.cpp.
00240 : adaptee_ (adaptee) 00241 { 00242 } |
|
Reimplemented from ACE_Event_Handler. Definition at line 245 of file ECG_Reactive_ConsumerEC_Control.cpp. References TAO_ECG_Reactive_ConsumerEC_Control::handle_timeout().
00248 { 00249 this->adaptee_->handle_timeout (tv, arg); 00250 return 0; 00251 } |
|
The adapted object.
Definition at line 55 of file ECG_Reactive_ConsumerEC_Control.h. |